'employee_document', 'plural' => 'employee_documents', ]; } protected static string|BackedEnum|null $navigationIcon = Heroicon::OutlinedDocument; protected static string|UnitEnum|null $navigationGroup = NavigationGroup::Records; protected static ?int $navigationSort = 5; protected static ?string $recordTitleAttribute = 'title'; protected static bool $isGloballySearchable = false; public static function form(Schema $schema): Schema { return EmployeeDocumentForm::configure($schema); } public static function infolist(Schema $schema): Schema { return EmployeeDocumentInfolist::configure($schema); } public static function table(Table $table): Table { return EmployeeDocumentsTable::configure($table); } public static function getRelations(): array { return [ // ]; } public static function getPages(): array { return [ 'index' => ListEmployeeDocuments::route('/'), 'create' => CreateEmployeeDocument::route('/create'), 'view' => ViewEmployeeDocument::route('/{record}'), 'edit' => EditEmployeeDocument::route('/{record}/edit'), ]; } public static function getRecordRouteBindingEloquentQuery(): Builder { return parent::getRecordRouteBindingEloquentQuery() ->withoutGlobalScopes([ SoftDeletingScope::class, ]); } }