@extends('toko') @section('content')
@csrf
@if (is_array($carts) || is_object($carts)) @forelse ($carts as $row) @empty @endforelse @endif
Produk Harga Quantity Total
{{ $row['product_name'] }}
{{ $row['product_name'] }}
Rp {{ number_format($row['product_price']) }}
Rp {{ number_format($row['product_price'] * $row['qty']) }}
Tidak ada belanjaan
Subtotal
Rp {{ number_format($subtotal) }}
@endsection