{!! __('Shopping Cart') !!}
@if (session()->has('success_message'))
{{ session()->get('success_message') }}
@endif
@if (session()->has('error_message'))
{{ session()->get('error_message') }}
@endif
@if (sizeof(Cart::instance('default')->content()) > 0)
@endif
{!! __('Destination') !!}
{!! __('Cart Total') !!}
{!! __('Subtotal') !!} | {{ Cart::instance('default')->subtotal(false,false,false) }} | {{ __('EGP') }} |
{{ __('Delivery') }} | 0.0 | {{ __('EGP') }} |
{{ __('Order Total') }} | {{ Cart::instance('default')->subtotal() }} | {{ __('EGP') }} |
- {!! Form::open(array('route' => 'checkout.cart', 'method' => 'GET','class' => 'mb-0','id' => 'add-form')) !!} {!! Form::close() !!}