@extends('user.layouts.master') @section('content') @if(session('success')) @endif
@foreach ($cart as $item) @endforeach
Products Name Price(MMK) Quantity Total(MMK) Handle

{{ $item->name }}

{{ $item->price }}

{{ $item->price * $item ->qty }}

Cart Total

Subtotal:

{{ $totalPrice }} MMK

Deli fees:

500 MMK

Total:

{{ $totalPrice + 500 }} MMK

@endsection @section('js-section') @endsection