Skip to content

Instantly share code, notes, and snippets.

@devmeireles
Created March 27, 2019 15:39
Show Gist options
  • Save devmeireles/7b2c5cb5dc768c36e005d9f5595c93c6 to your computer and use it in GitHub Desktop.
Save devmeireles/7b2c5cb5dc768c36e005d9f5595c93c6 to your computer and use it in GitHub Desktop.
<?php
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/
Route::get('/', function () {
return view('welcome');
});
Auth::routes();
Route::group(['middleware' => ['auth', 'web']], function () {
Route::get('/dashboard', 'HomeController@index')->name('admin.dashboard.home');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment