489495df
芝麻web文件管理
芝麻web文件管理V1.00
489495df
编辑当前文件:/home/landifun/www/Modules/Contacts/Routes/web.php
<?php /* |-------------------------------------------------------------------------- | Web Routes |-------------------------------------------------------------------------- | | Here is where you can register web routes for your application. These | routes are loaded by the RouteServiceProvider within a group which | contains the "web" middleware group. Now create something great! | */ Route::get('contacts', 'ContactsController@contacts')->name('contacts'); Route::post('contacts/save', 'ContactsController@save_contact')->name('contacts.save'); Route::middleware('auth')->group(function () { Route::middleware('can:admin')->prefix('settings')->name('settings.')->group(function () { Route::group(['prefix' => 'contacts', 'as' => 'contacts.'], function() { Route::get('', 'ContactsController@index')->name('index'); Route::delete('{id}', 'ContactsController@destroy')->name('destroy'); Route::post('ajaxreaded', 'ContactsController@ajax_readed')->name('ajaxreaded'); }); }); });
Not Found
404
Not Found