@extends('layouts.master') @section('title', 'Summary') @yield('navbar') @section('content')

Items to checkout

Order summary

@foreach($cart as $cartitems) @endforeach
# Item Name Item Price Item Quantity Total
1 {{ App\item::find($cartitems->item_store->item_id)->name }} Rs:{{ $cartitems->item_store->price }} {{ $cartitems->qty }} Rs:{{ $cartitems->subtotal }}
Subtotal Rs: {{ $cart->sum('subtotal') }}
Total Rs: {{ $cart->sum('subtotal') }}
Back to cart {{-- Continue to checkout --}} {!! Form::open(array('url' => ['order/confirm'], 'method' => 'GET')) !!} {!! Form::close() !!}
@endsection