Advertisement
fadlyshafa

Untitled

May 15th, 2020
1,762
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.20 KB | None | 0 0
  1. ....
  2. Route::get('/', function () {
  3.     return view('welcome');
  4. });
  5.  
  6. Route::group(['middleware'=>'auth'],function(){
  7.    
  8. });
  9.  
  10. Auth::routes();
  11.  
  12. Route::get('/home', 'HomeController@index')->name('home');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement