Laravel5.0 BootStrap echarts
-
-
- /*
- |--------------------------------------------------------------------------
- | Application Routes
- |--------------------------------------------------------------------------
- |
- | Here is where you can register all of the routes for an application.
- | It's a breeze. Simply tell Laravel the URIs it should respond to
- | and give it the controller to call when that URI is requested.
- |
- */
-
- 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' => 'Auth\AuthController',
- 'password' => 'Auth\PasswordController',
- ]);
-
- Route::group(['prefix' => 'user', 'namespace' => 'User','middleware'=>'user'], 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 顶端
复制代码
|