65 lines
1.9 KiB
PHP
65 lines
1.9 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\Promotions;
|
|
|
|
use App\Filament\Resources\Promotions\Pages\CreatePromotion;
|
|
use App\Filament\Resources\Promotions\Pages\EditPromotion;
|
|
use App\Filament\Resources\Promotions\Pages\ListPromotions;
|
|
use App\Filament\Resources\Promotions\Schemas\PromotionForm;
|
|
use App\Filament\Resources\Promotions\Schemas\PromotionInfolist;
|
|
use App\Filament\Resources\Promotions\Tables\PromotionsTable;
|
|
use App\Models\Promotion;
|
|
use BackedEnum;
|
|
use Filament\Resources\Resource;
|
|
use Filament\Schemas\Schema;
|
|
use Filament\Support\Icons\Heroicon;
|
|
use Filament\Tables\Table;
|
|
|
|
class PromotionResource extends Resource
|
|
{
|
|
public static function canAccess(): bool
|
|
{
|
|
return auth()->user()?->can('admin') || auth()->user()?->can('manage_pizzas') ?? false;
|
|
}
|
|
|
|
protected static ?string $model = Promotion::class;
|
|
|
|
protected static string | \BackedEnum | null $navigationIcon = 'heroicon-o-percent-badge';
|
|
protected static string | \UnitEnum | null $navigationGroup = 'Treść';
|
|
protected static ?string $pluralModelLabel = 'Promocje';
|
|
protected static ?string $modelLabel = 'Promocja';
|
|
protected static ?int $navigationSort = 3;
|
|
protected static ?string $recordTitleAttribute = 'Promocja';
|
|
|
|
public static function form(Schema $schema): Schema
|
|
{
|
|
return PromotionForm::configure($schema);
|
|
}
|
|
|
|
public static function infolist(Schema $schema): Schema
|
|
{
|
|
return PromotionInfolist::configure($schema);
|
|
}
|
|
|
|
public static function table(Table $table): Table
|
|
{
|
|
return PromotionsTable::configure($table);
|
|
}
|
|
|
|
public static function getRelations(): array
|
|
{
|
|
return [
|
|
//
|
|
];
|
|
}
|
|
|
|
public static function getPages(): array
|
|
{
|
|
return [
|
|
'index' => ListPromotions::route('/'),
|
|
'create' => CreatePromotion::route('/create'),
|
|
'edit' => EditPromotion::route('/{record}/edit'),
|
|
];
|
|
}
|
|
}
|