47 lines
1.6 KiB
PHP
47 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\Products;
|
|
|
|
use App\Filament\Resources\Products\Pages;
|
|
use App\Models\Product;
|
|
use App\Enums\NavigationGroup;
|
|
use Filament\Schemas\Schema;
|
|
use Filament\Resources\Resource;
|
|
use Filament\Tables\Table;
|
|
use App\Filament\Resources\Products\ProductResource\RelationManagers\ContractsRelationManager;
|
|
|
|
use App\Filament\Resources\Products\Schemas\ProductForm;
|
|
|
|
class ProductResource extends Resource
|
|
{
|
|
protected static array $permissionActions = ["view", "create", "update", "delete", "restore", "forceDelete"];
|
|
protected static ?string $model = Product::class;
|
|
protected static string | \BackedEnum | null $navigationIcon = 'heroicon-o-squares-2x2';
|
|
protected static string | \UnitEnum | null $navigationGroup = NavigationGroup::WAREHOUSE->value;
|
|
protected static ?int $navigationSort = 2;
|
|
|
|
protected static ?string $modelLabel = 'Sản phẩm';
|
|
protected static ?string $pluralModelLabel = 'Sản phẩm';
|
|
|
|
public static function form(Schema $schema): Schema
|
|
{
|
|
return ProductForm::configure($schema);
|
|
}
|
|
|
|
public static function table(Table $table): Table
|
|
{
|
|
return \App\Filament\Resources\Products\Tables\ProductsTable::configure($table);
|
|
}
|
|
|
|
public static function getRelations(): array { return [ContractsRelationManager::class]; }
|
|
|
|
public static function getPages(): array
|
|
{
|
|
return [
|
|
'index' => Pages\ListProducts::route('/'),
|
|
'create' => Pages\CreateProduct::route('/create'),
|
|
'edit' => Pages\EditProduct::route('/{record}/edit'),
|
|
];
|
|
}
|
|
}
|