@include('layouts.flash-message') @if(count($cartitems)>0)
@foreach($cartitems as $item) @endforeach
Product Qtd Total price

{{ $item->product->name}}

{{ $item->quantity}}
{{ $item->product->price * $item->quantity }}$

Order Details

Subtotal
{{ $sub_total }}$
Tax
{{ $tax }}$
Total
{{ $this->total }}$
Processing payment....
@else

Add Product

@endif