schema([ // ]); } public static function table(Table $table): Table { return $table ->columns([ Tables\Columns\TextColumn::make('property_platform_id')->label('Platform ID')->searchable(), Tables\Columns\TextColumn::make('last_found')->label('Last found')->searchable(), ]) ->filters([ // ]) ->actions([ Tables\Actions\ViewAction::make(), ]) ->bulkActions([ Tables\Actions\BulkActionGroup::make([ Tables\Actions\DeleteBulkAction::make(), ]), ]); } public static function infolist(Infolist $infolist): Infolist { return $infolist ->schema([ TextEntry::make('property_platform_id'), TextEntry::make('last_found') ->dateTime(), ]) ->columns(1) ->inlineLabel(); } public static function getRelations(): array { return [ //RelationManagers\ExtractionsRelationManager::class, ]; } public static function getPages(): array { return [ 'index' => Pages\ListProperties::route('/'), //'create' => Pages\CreateProperties::route('/create'), 'view' => Pages\ViewProperties::route('/{record}'), //'edit' => Pages\EditProperties::route('/{record}/edit'), ]; } }