Update carshowcategory filament resource
This commit is contained in:
@ -38,17 +38,25 @@ class CarShowCategoryResource extends Resource
|
||||
])
|
||||
->actions([
|
||||
Tables\Actions\EditAction::make(),
|
||||
Tables\Actions\DeleteAction::make(),
|
||||
])
|
||||
->bulkActions([
|
||||
Tables\Actions\DeleteBulkAction::make(),
|
||||
]);
|
||||
}
|
||||
|
||||
public static function getRelations(): array
|
||||
{
|
||||
return [
|
||||
//
|
||||
];
|
||||
}
|
||||
|
||||
public static function getPages(): array
|
||||
{
|
||||
return [
|
||||
'index' => Pages\ManageCarShowCategories::route('/'),
|
||||
'index' => Pages\ListCarShowCategories::route('/'),
|
||||
'create' => Pages\CreateCarShowCategory::route('/create'),
|
||||
'edit' => Pages\EditCarShowCategory::route('/{record}/edit'),
|
||||
];
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user