1
0

Removed closures from routes

This commit is contained in:
2020-04-30 01:29:39 +02:00
parent 3eaf67cb4a
commit e59b6753a3
5 changed files with 22 additions and 12 deletions

View File

@@ -13,9 +13,7 @@ use Illuminate\Support\Facades\Route;
|
*/
Route::get('/', function () {
return view("home");
})->name("home");
Route::get('/', "GuestController@home")->name("home");
Route::prefix("me")->group(function () {