value; protected static ?int $navigationSort = 10; protected static ?string $modelLabel = 'Biểu mẫu'; protected static ?string $pluralModelLabel = 'Biểu mẫu in ấn'; public static function form(Schema $schema): Schema { return FormTemplateForm::configure($schema); } public static function table(Table $table): Table { return FormTemplatesTable::configure($table); } public static function getPages(): array { return [ 'index' => Pages\ListFormTemplates::route('/'), 'create' => Pages\CreateFormTemplate::route('/create'), 'edit' => Pages\EditFormTemplate::route('/{record}/edit'), ]; } }