schema([ // ]); } public static function table(Table $table): Table { return $table ->columns([ // ]) ->filters([ // ]) ->actions([ Tables\Actions\EditAction::make(), ]) ->bulkActions([ Tables\Actions\DeleteBulkAction::make(), ]); } public static function getRelations(): array { return [ // ]; } public static function getPages(): array { return [ 'index' => Pages\ListVehicles::route('/'), 'create' => Pages\CreateVehicles::route('/create'), 'edit' => Pages\EditVehicles::route('/{record}/edit'), ]; } }