@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
Above is an example in my main.blade.php
file; I am trying to use 2 different navigation bars - I know there is a better way to do this but I still can't get the grasp of it!
I don't think it is good coding standards to repeat Request::is
over and over again. I am a newbie :( what did I miss over there?