Update carshowcategory filament resource

This commit is contained in:
2022-08-06 15:46:22 -04:00
parent f54e41aef9
commit 003e686224
4 changed files with 43 additions and 4 deletions

View File

@ -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'),
];
}
}