From 50bb4ef4e8bbef98c10c2670b75110696e0528c8 Mon Sep 17 00:00:00 2001 From: Louis Jeckel Date: Tue, 16 Feb 2021 02:49:02 +0100 Subject: [PATCH] delete EmailBatch.php nova --- app/Nova/EmailBatch.php | 96 ----------------------------------------- 1 file changed, 96 deletions(-) delete mode 100644 app/Nova/EmailBatch.php diff --git a/app/Nova/EmailBatch.php b/app/Nova/EmailBatch.php deleted file mode 100644 index 20579ba..0000000 --- a/app/Nova/EmailBatch.php +++ /dev/null @@ -1,96 +0,0 @@ -sortable(), - Text::make('subject'), - BelongsTo::make('File', 'file', PdfFile::class), - ]; - } - - /** - * Get the cards available for the request. - * - * @param \Illuminate\Http\Request $request - * @return array - */ - public function cards(Request $request) - { - return []; - } - - /** - * Get the filters available for the resource. - * - * @param \Illuminate\Http\Request $request - * @return array - */ - public function filters(Request $request) - { - return []; - } - - /** - * Get the lenses available for the resource. - * - * @param \Illuminate\Http\Request $request - * @return array - */ - public function lenses(Request $request) - { - return []; - } - - /** - * Get the actions available for the resource. - * - * @param \Illuminate\Http\Request $request - * @return array - */ - public function actions(Request $request) - { - return []; - } -} -- 2.39.5