@extends("layouts.index") @section("content")
@if(Session()->has('warning')) @endif
@foreach($cartItems->items as $item) @endforeach
Item Description Price Quantity Total

{{$item['data']['name']}}

{{Str::limit($item['data']['description'],50)}}

{{number_format($item['data']['price'],2)}}

{{number_format($item['totalSinglePrice'])}}

  • จำนวนสินค้า{{$cartItems->totalQuantity}}
  • คะแนนรวม{{number_format($cartItems->totalPv)}}
  • ราคารวม{{number_format($cartItems->totalPrice)}}
Update Check Out
@endsection