@extends('layouts.master') @section('title', 'Summary') @yield('navbar') @section('content')
| # | 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') }} |