44 lines
1.4 KiB
PHP
44 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\Customers;
|
|
|
|
use App\Filament\Resources\Customers\Pages;
|
|
use App\Models\Customer;
|
|
use Filament\Schemas\Schema;
|
|
use Filament\Resources\Resource;
|
|
use Filament\Tables\Table;
|
|
use App\Enums\NavigationGroup;
|
|
use App\Filament\Resources\Customers\Schemas\CustomerForm;
|
|
use App\Filament\Resources\Customers\Tables\CustomersTable;
|
|
|
|
class CustomerResource extends Resource
|
|
{
|
|
protected static array $permissionActions = ["view", "create", "update", "delete", "restore", "forceDelete"];
|
|
protected static ?string $model = Customer::class;
|
|
protected static string | \BackedEnum | null $navigationIcon = 'heroicon-o-users';
|
|
protected static string | \UnitEnum | null $navigationGroup = NavigationGroup::CUSTOMER->value;
|
|
protected static ?int $navigationSort = 3;
|
|
|
|
protected static ?string $modelLabel = 'Khách hàng';
|
|
protected static ?string $pluralModelLabel = 'Khách hàng';
|
|
|
|
public static function form(Schema $schema): Schema
|
|
{
|
|
return CustomerForm::configure($schema);
|
|
}
|
|
|
|
public static function table(Table $table): Table
|
|
{
|
|
return CustomersTable::configure($table);
|
|
}
|
|
|
|
public static function getPages(): array
|
|
{
|
|
return [
|
|
'index' => Pages\ListCustomers::route('/'),
|
|
'create' => Pages\CreateCustomer::route('/create'),
|
|
'edit' => Pages\EditCustomer::route('/{record}/edit'),
|
|
];
|
|
}
|
|
}
|