@yield('css')
@foreach($navCategories as $cat)
{{ $cat->name }}
@endforeach
Home
Company Info
Contact Us & Location
@if(Auth::check())
My Orders
@if(auth()->check() && auth()->user()->isAdmin())
View Dashboard
@endif
Logout
@else
Login
Register
@endif
Cart
({{ Cart::content()->count() }})
@if(auth()->check() && auth()->user()->isAdmin()) @endif
Company Info
Contact Us & Location
@if(Auth::check())
My Orders
@if(auth()->check() && auth()->user()->isAdmin())
View Dashboard
@endif
Logout
@else
Login
Register
@endif
{{ Cart::content()->count() }}
@if(Session::has('success'))
{{ Session::get('success') }}
@endif @if(Session::has('error'))
{{ Session::get('error') }}
@endif @yield('content')
@yield('scripts')