@extends('layouts.frontend') @section('title', 'Keranjang Belanja') @section('content')

Keranjang Belanja

@if ($cart->count() > 0)
{{-- CHECKBOX HEADER --}} @php $total_belanja = 0; @endphp @foreach ($cart as $item) @php $total_per_item = $item->produk->harga * $item->quantity; $total_belanja += $total_per_item; @endphp {{-- CHECKBOX ITEM --}} @endforeach
Produk Harga Jumlah Total
{{ $item->produk->nama_produk }}
Rp {{ number_format($item->produk->harga, 0, ',', '.') }}
Rp {{ number_format($total_per_item, 0, ',', '.') }}
@csrf @method('DELETE')
Ringkasan Belanja
Subtotal Rp {{ number_format($total_belanja, 0, ',', '.') }}
Total Rp {{ number_format($total_belanja, 0, ',', '.') }}
{{-- Tombol Checkout Dinamis --}} Checkout Sekarang Lanjut Belanja
@else

Keranjang Kosong

Yuk isi dengan beras berkualitas kami.

Mulai Belanja
@endif
@endsection @section('js') @endsection