massive improvements to tests, streamlined and synced migrations, fixed a lot of wrong or old table field references. implemented a lot of pages in react for website frontend
This commit is contained in:
@@ -85,7 +85,7 @@ class EventPackagesRelationManager extends RelationManager
|
||||
->dateTime()
|
||||
->badge()
|
||||
->color(fn ($state) => $state && $state->isPast() ? 'danger' : 'success'),
|
||||
TextColumn::make('purchased_price')
|
||||
TextColumn::make('price')
|
||||
->label('Preis')
|
||||
->money('EUR')
|
||||
->sortable(),
|
||||
|
||||
@@ -149,7 +149,7 @@ class TenantResource extends Resource
|
||||
'package_id' => $data['package_id'],
|
||||
'provider_id' => 'manual',
|
||||
'type' => 'reseller_subscription',
|
||||
'purchased_price' => 0,
|
||||
'price' => 0,
|
||||
'metadata' => ['reason' => $data['reason'] ?? 'manual assignment'],
|
||||
]);
|
||||
}),
|
||||
|
||||
@@ -87,7 +87,7 @@ class PackagePurchasesRelationManager extends RelationManager
|
||||
'reseller_subscription' => 'success',
|
||||
default => 'gray',
|
||||
}),
|
||||
TextColumn::make('purchased_price')
|
||||
TextColumn::make('price')
|
||||
->money('EUR')
|
||||
->sortable(),
|
||||
TextColumn::make('provider_id')
|
||||
|
||||
Reference in New Issue
Block a user