21 lines
694 B
PHP
21 lines
694 B
PHP
<?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::group(['prefix' => 'user', 'middleware' => ['auth', 'check.auth']], function () {
|
|
Route::get('/', 'UserController@index');
|
|
Route::prefix('account')->group(function () {
|
|
Route::get('/', 'UserController@profile');
|
|
Route::post('update', 'UserController@update');
|
|
});
|
|
});
|