<?php /* |-------------------------------------------------------------------------- | 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 顶端
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号