新增管理者、接案者及發案者的相關路由設定

This commit is contained in:
Tom K.H. Lin 2018-07-24 18:58:18 +08:00
parent 8dae64f982
commit 0ef01aa8cf

View File

@ -11,6 +11,28 @@
|
*/
Route::get('/', function () {
return view('welcome');
//首頁url
Route::get('/', 'HomeController@index');
//管理者相關url
Route::group(['prefix' => 'admin'], function () {
Route::get('/login', '');
Route::post('/login', '');
Route::get('/dashbord', '');
});
//接案者相關url
Route::group(['prefix' => 'receiver'], function () {
Route::get('/login', '');
Route::post('/login', '');
Route::get('/register', '');
Route::post('/register', '');
});
//發案者相關url
Route::group(['prefix' => 'casebuilder'], function () {
Route::get('/login', '');
Route::post('/login', '');
Route::get('/register', '');
Route::post('/register', '');
});