@if(Request::is('login') OR Request::is('tags') OR Request::is('categories') OR Request::is('posts') OR Request::is('tags/..') OR Request::is('categories/..') OR Request::is('posts/..') OR Request::is("posts/{$post->id}"))
@include('partials._navAdmin')
@else
@include('partials._nav')
@endif
上記は私のmain.blade.php
ファイルの例です。2 つの異なるナビゲーション バーを使用しようとしています。これを行うためのより良い方法があることはわかっていますが、まだ把握できません。
何度も何度も繰り返すのは良いコーディング標準ではないと思いますRequest::is
。私は初心者です:(あそこで何を見逃したのですか?