diff --git a/app/Filament/Resources/ProductServiceReportResource.php b/app/Filament/Resources/ProductServiceReportResource.php new file mode 100644 index 0000000..67713ca --- /dev/null +++ b/app/Filament/Resources/ProductServiceReportResource.php @@ -0,0 +1,57 @@ +schema([ + // + ]); + } + + public static function table(Table $table): Table + { + return $table + ->columns([ + // + ]) + ->filters([ + // + ]) + ->actions([ + ]) + ->bulkActions([ + ]); + } + + public static function getRelations(): array + { + return [ + // + ]; + } + + public static function getPages(): array + { + return [ + 'index' => Pages\ListProductServiceReports::route('/'), + 'create' => Pages\CreateProductServiceReport::route('/create'), + 'edit' => Pages\EditProductServiceReport::route('/{record}/edit'), + ]; + } +} diff --git a/app/Filament/Resources/ProductServiceReportResource/Pages/CreateProductServiceReport.php b/app/Filament/Resources/ProductServiceReportResource/Pages/CreateProductServiceReport.php new file mode 100644 index 0000000..540f7e7 --- /dev/null +++ b/app/Filament/Resources/ProductServiceReportResource/Pages/CreateProductServiceReport.php @@ -0,0 +1,11 @@ +