@if(config('settings.site_logo_enable')) {{config('settings.site_logo_name') . ' Logo'}}   @endif {{config('settings.site_logo_name')}}
  • @lang('Home')
  • @lang('Cart') {{Cart::content()->count()}} 
      @if(Cart::count() > 0) @foreach(Cart::content() as $cartItem)
    • @if($cartItem->options->has('photo')) @if($cartItem->options->photo)
      {{$cartItem->name}}
      @endif @endif {{$cartItem->name}} {{currency_format($cartItem->options->unit_price)}}
      {!! Form::open(['method'=>'delete', 'route'=>['front.cart.destroy', $cartItem->rowId], 'onsubmit'=>'submit_button.disabled = true; submit_button.value = "X"; return true;']) !!} {!! Form::submit('X', ['class'=>'btn btn-square btn-xs btn-danger', 'name'=>'submit_button']) !!} {!! Form::close() !!}
    • @endforeach
    • @lang('View Cart')
    • @else
    • @lang('The cart is empty.')
    • @endif
    @if(Auth::check())
  • @lang('Wishlist') {{Auth::user()->favouriteProducts()->count()}}
  • {{Auth::user()->name}}
    • @lang('Account Overview')
    • @lang('Orders')
    • @lang('Addresses')
    • @lang('Edit Profile')
    • @if(Auth::user()->vendor)
    • @lang('Vendor Profile')
    • @endif @if(Auth::user()->role)
    • @lang('Manage')
    • @endif
    • @lang('Logout')
    • {{ csrf_field() }}
  • @else
  • @lang('Login')
  • @lang('Signup')
  • @endif
{!! Form::open(['method'=>'get', 'action'=>['FrontController@search'], 'role'=>'search', 'class'=>'navbar-form', 'onsubmit'=>'submit_button.disabled = true; submit_button.value = "' . __('Please Wait...') . '"; return true;']) !!}
{!! Form::text('keyword', null, ['id'=>'search-keyword' ,'class'=>'form-control', 'placeholder'=>__('Enter Keyword Here...'), 'required']) !!} {!! Form::submit('Search', ['class'=>'btn btn-primary search-btn', 'name'=>'submit_button']) !!}
  {!! Form::close() !!}