我有以下路线组:
Route::group(['prefix' => 'admin'], function () {
Route::get('/', 'PagesController@index');
// some more routes...
});
在我的布局文件中,我有以下条件:
@if (Request::is('admin/*'))
@include('layouts.partials.admin_header')
@else
@include('layouts.partials.header')
@endif
当我导航到它时,www.examplesite.com/admin/
它没有显示在管理头文件中?