@extends('client.layouts.index') @section('content')

Home / Cart

Your Cart


@if (session()->has('success_message'))
{{ session()->get('success_message') }}
@endif @if (session()->has('error_message'))
{{ session()->get('error_message') }}
@endif @if (sizeof(Cart::content()) > 0) @foreach ($items as $item) @endforeach
Product Quantity Price
product {{ $item->name }} ${{ $item->subtotal }}
{!! csrf_field() !!}
{!! csrf_field() !!}
Your Total ${{ Cart::total() }}
Continue Shopping   Proceed to Checkout
{!! csrf_field() !!}
@else

You have no items in your shopping cart

Continue Shopping @endif
@endsection @section('js') @endsection