value; protected static ?int $navigationSort = 4; protected static ?string $modelLabel = 'Phụ lục'; protected static ?string $pluralModelLabel = 'Phụ lục HĐ'; public static function form(Schema $schema): Schema { return AppendixForm::configure($schema); } public static function table(Table $table): Table { return AppendicesTable::configure($table); } public static function getPages(): array { return [ 'index' => Pages\ListAppendices::route('/'), 'create' => Pages\CreateAppendix::route('/create'), 'edit' => Pages\EditAppendix::route('/{record}/edit'), ]; } }