@if(!Session::has('header_notify')) @if(!Request::is('store*'))
{{ content('header','rider_team_title') }} {{ content('header','rider_button_title') }}
@endif @endif
@php $get_data = App\Category::where([ ['type','lang'], ['status',1] ])->get(); @endphp
{{ content('header','header_pn') }}
@if(Auth::guest()) {{ __('Register Your Restaurant') }} @endif @if(Auth::guest()) {{ __('Login') }} @endif @if(Auth::check()) {{ __('Contact Us') }} @endif
{{ env('APP_NAME') }}
@if(Auth::check())
{{ __('Dashboard') }} {{ __('My Orders') }} {{ __('Settings') }} {{ __('Logout') }}
@csrf
@endif @if(Session::has('restaurant_cart'))
@if(Session::has('restaurant_cart')) @if(Request::is('store/'.Session::get('restaurant_cart')['slug']) || Request::is('/') || Request::is('area*') || Request::is('checkout'))
{{ Cart::instance('cart_'.Session::get('restaurant_cart')['slug'])->count() }}
@else
0
@endif @else
0
@endif
@if(Session::has('restaurant_cart')) @if(Request::is('store/'.Session::get('restaurant_cart')['slug']) || Request::is('/') || Request::is('area*') || Request::is('checkout'))
{{ Cart::instance('cart_'.Session::get('restaurant_cart')['slug'])->count() }}
@else
0
@endif @else
0
@endif
@else
@endif
  • {{ Menu('Header','submenu','','','right',true) }}
@php $currency=\App\Options::where('key','currency_name')->select('value')->first(); @endphp
@if(Session::has('restaurant_cart')) @if(Session::has('cart'))
@if(Cart::instance('cart_'.Session::get('restaurant_cart')['slug'])->count() > 0) @php $store = App\User::where('slug',Session::get('restaurant_cart')['slug'])->with('pickup','delivery')->first(); @endphp
{{ __('Delivery') }}
{{ $store->delivery->content }} {{ __('min') }}
{{ __('Your order') }} {{ $store->name }}
@foreach(Cart::instance('cart_'.$store->slug)->content() as $cart)
{{ $cart->name }}

{{ $cart->options->type }}

{{ strtoupper($currency->value) }} {{ number_format($cart->price,2) }}
@if($cart->qty > 1) @else @endif
@endforeach
{{ __('Subtotal') }}
{{ strtoupper($currency->value) }} {{ Cart::subtotal() }}
{{ __('Checkout') }}
@else
{{ __('No Item in your Cart') }}

{{ __("You haven't added anything in your cart yet! Start adding the products you like.") }}

{{ __('Subtotal') }}
{{ strtoupper($currency->value) }} {{ Cart::subtotal() }}
{{ __('Checkout') }}
@endif
@else
{{ __('No Item in your Cart') }}

{{ __("You haven't added anything in your cart yet! Start adding the products you like.") }}

{{ __('Subtotal') }}
{{ strtoupper($currency->value) }} {{ Cart::subtotal() }}
{{ __('Checkout') }}
@endif @else
{{ __('No Item in your Cart') }}

{{ __("You haven't added anything in your cart yet! Start adding the products you like.") }}

{{ __('Subtotal') }}
{{ strtoupper($currency->value) }} {{ Cart::subtotal() }}
{{ __('Checkout') }}
@endif