@extends('main') @section('styles') @endsection @section('body_class') class="shopping-cart-page" @endsection @section('content')

{!! __('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)
@foreach (Cart::instance('default')->content() as $item) @endforeach
  {{ __('Item') }} {{ __('Price') }} {{ __('Quantity') }} {{ __('Total') }} {{ __('Cancel') }}
{!! __('Continue Shopping') !!}
{!! csrf_field() !!}
{{ $item->name }}

{{ $item->name }}

{{ $item->price }} {{ __('EGP') }}
+
-
{{ $item->subtotal }} {{ __('EGP') }}
{!! csrf_field() !!}

{!! __('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() !!}
@else

{{ __('You have no items in your shopping cart') }}

@endif
@endsection @section('scripts') @endsection