Files
hqland-app/app/Filament/Resources/Customers/CustomerResource.php
2026-04-24 08:58:53 +00:00

43 lines
1.3 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 ?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'),
];
}
}