From: Louis Jeckel Date: Tue, 14 Apr 2020 14:28:09 +0000 (+0200) Subject: Update web.php X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=d019ba3a04a9b180ea849997934ae716346d1970;p=psq.git Update web.php --- diff --git a/routes/web.php b/routes/web.php index cab643c..5a5c848 100644 --- a/routes/web.php +++ b/routes/web.php @@ -93,20 +93,3 @@ Route::domain('{client_domains}')->group(function() { }); }); - - - - - -if(env('APP_DEBUG') === true){ - Route::get('/test', function(){ - - return \App\PdfFile::find(7)->makeSearchable(); - - return view('emails.batch', [ - 'subject' => 'Le coup de colère de Donald', - 'content' => 'Le super contenu !', - 'link' => \App\PdfFile::first()->getUrl(), - ]); - }); -}