From: Louis Jeckel Date: Tue, 16 Feb 2021 01:49:02 +0000 (+0100) Subject: delete EmailBatch.php nova X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=50bb4ef4e8bbef98c10c2670b75110696e0528c8;p=psq.git delete EmailBatch.php nova --- 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 []; - } -}