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'), ]; } }