mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/unity.git
synced 2026-08-19 04:13:58 +00:00
ad85832e75
user login UI
8 lines
312 B
PHP
8 lines
312 B
PHP
<?php
|
|
|
|
Route::group(['namespace' => 'User'], function () {
|
|
Route::group(['namespace' => 'Web'], function () {
|
|
Route::get('/login', ['as' => 'user.app', 'uses' => 'AppController@index'])->where('any', '.*');
|
|
Route::get('/', ['as' => 'user.app', 'uses' => 'AppController@index'])->where('any', '.*');
|
|
});
|
|
}); |