Laravel5.0 BootStrap echarts
-
-
- /*
- |--------------------------------- ----------------------------------------
- |申請ルート
- |---------------------------------------------- ------------------------
- |
- |ここで、アプリケーションのすべてのルートを登録できます。
- |とても簡単です。 Laravel に応答する URI を伝えるだけです
- |そして、その URI が要求されたときに呼び出すコントローラーを指定します。
- |
- */
- Route::get('/', 'WelcomeController@index');
- Route::get('home', 'HomeController@ Index');
- Route::post('/appconf', 'WelcomeController@appconf');
- Route::get('/appconf', 'WelcomeController@appconf');
- Route::get('law ', 'WelcomeController@law');
- Route::get('lawframe', 'WelcomeController@lawframe');
- Route::controllers([
- 'auth' => 'AuthAuthController',
- 'パスワード' => 'AuthPasswordController',
- ]);
-
- Route::group(['プレフィックス' => 'ユーザー', '名前空間' => 'ユーザー','ミドルウェア'=>'ユーザー'], function()
- {
- Route::get('/', 'UserController@index');
- Route::post('/', 'UserController@index');
- Route::get('/edit/{ id}', 'UserController@edit');
- Route::post('/edit/{id}', 'UserController@edit');
- Route::get('/update/{id}', 'UserController @update');
- Route::post('/update/{id}', 'UserController@update');
- Route::get('/history/{id}', 'UserController@history');
- Route::post('/history/{id}', 'UserController@history');
-
- Route::get('/wealthadd/{id}', 'UserController@wealthadd');
- Route::post( '/wealthadd/{id}', 'UserController@wealthadd');
-
- Route::get('/dowealthadd/{id}', 'UserController@dowealthadd');
- "app/Http/routes.php" 154L 、5664C 1,1顶端
复制發
|