value; protected static ?int $navigationSort = 2; protected static ?string $modelLabel = 'Đợt mở bán'; protected static ?string $pluralModelLabel = 'Đợt mở bán'; public static function form(Schema $schema): Schema { return SalesPhaseForm::configure($schema); } public static function table(Table $table): Table { return SalesPhasesTable::configure($table); } public static function getPages(): array { return [ 'index' => Pages\ListSalesPhases::route('/'), 'create' => Pages\CreateSalesPhase::route('/create'), 'edit' => Pages\EditSalesPhase::route('/{record}/edit'), ]; } }