127 lines
3.5 KiB
PHP
127 lines
3.5 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\Coupons;
|
|
|
|
use App\Filament\Clusters\WeeklyOps\WeeklyOpsCluster;
|
|
use App\Filament\Resources\Coupons\Pages\CreateCoupon;
|
|
use App\Filament\Resources\Coupons\Pages\EditCoupon;
|
|
use App\Filament\Resources\Coupons\Pages\ListCoupons;
|
|
use App\Filament\Resources\Coupons\Pages\ViewCoupon;
|
|
use App\Filament\Resources\Coupons\RelationManagers\RedemptionsRelationManager;
|
|
use App\Filament\Resources\Coupons\Schemas\CouponForm;
|
|
use App\Filament\Resources\Coupons\Schemas\CouponInfolist;
|
|
use App\Filament\Resources\Coupons\Tables\CouponsTable;
|
|
use App\Models\Coupon;
|
|
use BackedEnum;
|
|
use Filament\Resources\Resource;
|
|
use Filament\Schemas\Schema;
|
|
use Filament\Support\Icons\Heroicon;
|
|
use Filament\Tables\Table;
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
use Illuminate\Database\Eloquent\SoftDeletingScope;
|
|
use Illuminate\Support\Facades\Auth;
|
|
|
|
class CouponResource extends Resource
|
|
{
|
|
protected static ?string $model = Coupon::class;
|
|
|
|
protected static ?string $cluster = WeeklyOpsCluster::class;
|
|
|
|
protected static string|BackedEnum|null $navigationIcon = Heroicon::OutlinedTicket;
|
|
|
|
protected static ?int $navigationSort = 60;
|
|
|
|
protected static ?string $navigationLabel = 'Coupons';
|
|
|
|
public static function getNavigationGroup(): string
|
|
{
|
|
return __('admin.nav.commercial');
|
|
}
|
|
|
|
public static function form(Schema $schema): Schema
|
|
{
|
|
return CouponForm::configure($schema);
|
|
}
|
|
|
|
public static function infolist(Schema $schema): Schema
|
|
{
|
|
return CouponInfolist::configure($schema);
|
|
}
|
|
|
|
public static function table(Table $table): Table
|
|
{
|
|
return CouponsTable::configure($table);
|
|
}
|
|
|
|
public static function getRelations(): array
|
|
{
|
|
return [
|
|
RedemptionsRelationManager::class,
|
|
];
|
|
}
|
|
|
|
public static function getPages(): array
|
|
{
|
|
return [
|
|
'index' => ListCoupons::route('/'),
|
|
'create' => CreateCoupon::route('/create'),
|
|
'view' => ViewCoupon::route('/{record}'),
|
|
'edit' => EditCoupon::route('/{record}/edit'),
|
|
];
|
|
}
|
|
|
|
public static function getRecordRouteBindingEloquentQuery(): Builder
|
|
{
|
|
return parent::getRecordRouteBindingEloquentQuery()
|
|
->withoutGlobalScopes([
|
|
SoftDeletingScope::class,
|
|
]);
|
|
}
|
|
|
|
public static function getEloquentQuery(): Builder
|
|
{
|
|
return parent::getEloquentQuery()->withoutGlobalScopes([
|
|
SoftDeletingScope::class,
|
|
]);
|
|
}
|
|
|
|
public static function mutateFormDataBeforeCreate(array $data): array
|
|
{
|
|
$userId = Auth::id();
|
|
if ($userId) {
|
|
$data['created_by'] = $userId;
|
|
$data['updated_by'] = $userId;
|
|
}
|
|
|
|
return static::sanitizeFormData($data);
|
|
}
|
|
|
|
public static function mutateFormDataBeforeSave(array $data): array
|
|
{
|
|
if ($userId = Auth::id()) {
|
|
$data['updated_by'] = $userId;
|
|
}
|
|
|
|
return static::sanitizeFormData($data);
|
|
}
|
|
|
|
protected static function sanitizeFormData(array $data): array
|
|
{
|
|
if (! empty($data['code'])) {
|
|
$data['code'] = strtoupper($data['code']);
|
|
}
|
|
|
|
if (($data['type'] ?? null) === 'percentage') {
|
|
$data['currency'] = null;
|
|
} elseif (! empty($data['currency'])) {
|
|
$data['currency'] = strtoupper($data['currency']);
|
|
}
|
|
|
|
if (empty($data['metadata'])) {
|
|
$data['metadata'] = null;
|
|
}
|
|
|
|
return $data;
|
|
}
|
|
}
|