当前位置 : 主页 > 网络编程 > PHP >

php cms门户网站模版

来源:互联网 收集:自由互联 发布时间:2021-06-30
功能:文章发布、评论、文章收费、积分管理、站内广告、阅读统计等 代码还为完全开发完,支付功能还在调试。 调试完成会第一时间发上来。 欢迎也有学习laravel留言给我,大家一起
功能:文章发布、评论、文章收费、积分管理、站内广告、阅读统计等
代码还为完全开发完,支付功能还在调试。
调试完成会第一时间发上来。
欢迎也有学习laravel留言给我,大家一起讨论学习。

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          顶端
网友评论