@include('components.theme.pages.header')
@csrf
@foreach($checkoutItem as $key => $rows)

{{ $rows['name'] }}

{{ 'Rp. ' . number_format($rows['items']['price'], 0, ',', '.') }}
Jenis Produk: {{ $rows['items']['type'] }}

Deskripsi Produk

{!! $rows['items']['description'] !!}
@php $itemsId = $key . ',' . $rows['items']['item_id']; @endphp
@endforeach
Total Item
x {{ count($checkoutItem) }}
Sub Total
{{ 'Rp. ' . number_format($totalCart, 0, ',', '.') }}
Total Harga
@php echo 'Rp ' . number_format($totalCart, 0, ',', '.'); @endphp
{!! Form::close() !!}
@push('scripts') @endpush @include('components.theme.pages.footer')