欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

php cms门户网站模版

程序员文章站 2022-03-30 14:13:09
...

1. [PHP]代码

<?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