'shift', 'plural' => 'shifts', ]; } protected static string|BackedEnum|null $navigationIcon = Heroicon::OutlinedClock; protected static string|UnitEnum|null $navigationGroup = NavigationGroup::Organization; protected static ?int $navigationSort = 3; protected static ?string $recordTitleAttribute = 'name'; protected static bool $isGloballySearchable = false; public static function form(Schema $schema): Schema { return ShiftForm::configure($schema); } public static function infolist(Schema $schema): Schema { return ShiftInfolist::configure($schema); } public static function table(Table $table): Table { return ShiftsTable::configure($table); } public static function getRelations(): array { return [ // ]; } public static function getPages(): array { return [ 'index' => ListShifts::route('/'), 'create' => CreateShift::route('/create'), 'view' => ViewShift::route('/{record}'), 'edit' => EditShift::route('/{record}/edit'), ]; } public static function getRecordRouteBindingEloquentQuery(): Builder { return parent::getRecordRouteBindingEloquentQuery() ->withoutGlobalScopes([ SoftDeletingScope::class, ]); } }