first commit
This commit is contained in:
11
routes/web.php
Normal file
11
routes/web.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
use Illuminate\Support\Facades\Auth;
|
||||
use Illuminate\Support\Facades\Route;
|
||||
|
||||
Auth::routes();
|
||||
|
||||
Route::get('{any}', 'AppController@index')
|
||||
->where('any', '.*')
|
||||
->middleware('auth')
|
||||
->name('home');
|
||||
|
||||
Reference in New Issue
Block a user