@if(setting('site.phone'))
{{setting('site.phone')}}
@endif
@if (setting('site.email'))
{{setting('site.email')}}
@endif
@if (setting('site.location'))
{{setting('site.location')}} @endif
@guest @if (Route::has('login'))
{{ __('Login') }}
@endif @if (Route::has('register'))
{{ __('Register') }}
@endif @else
{{ Auth::user()->name }}
{{ __('Profile') }}
{{ __('Logout') }}
@csrf
@endguest
@if(setting('site.phone'))
{{setting('site.phone')}}
@endif
@if (setting('site.location'))
{{setting('site.location')}} @endif
@guest @if (Route::has('login'))
{{ __('Login') }}
@endif @if (Route::has('register'))
{{ __('Register') }}
@endif @else
{{ Auth::user()->name }}
{{ __('Profile') }}
{{ __('Logout') }}
@csrf
@endguest
@if ( setting('site.logo'))
@endif
Home
About us
Services
+
@foreach ($services as $service)
- {{$service->title}}
@endforeach
News
Faq
Contact us
Shop
@if (setting('social-media.facebook'))
@endif
@if(Auth::check()) @if(auth()->user()->cart->count() == 0)
@else
({{auth()->user()->cart->sum('quantity')}})
@endif @else
@endif
{{-- Bag modal content --}}
@if (Auth::check())
@if (auth()->user()->cart->count() == 0)
My Bag
×
Your Bag is empty!
Start shopping now.
@else
My Bag
×
@foreach (auth()->user()->cart as $item)
{{$item->product->name}}
({{$item->quantity}})
@if ($item->product->on_sale) ${{$item->product->on_sale}} @else ${{$item->product->price}} @endif
x
My Bag
×
Are you sure you want to delete ?
@endforeach
Subtotal:
$ {{auth()->user()->cart->sum('price')}}
@endif
@endif
{{-- Search Modal --}}
Search Field
×
@yield('content')