@extends('layouts.frontend') @section('title', 'Keranjang Belanja') @section('content')
{{-- Alert Notification --}} @if(session('success')) @endif
@php $total_belanja = 0; @endphp @forelse($cart as $id => $details) @php $total = $details['price'] * $details['quantity']; $total_belanja += $total; @endphp @empty @endforelse
Produk Nama Harga Jumlah Total Aksi
{{ $details['name'] }}

{{ $details['name'] }}

Rp {{ number_format($details['price'], 0, ',', '.') }}

Rp {{ number_format($total, 0, ',', '.') }}

@csrf @method('DELETE')

Keranjang belanja masih kosong.

Mulai Belanja
@if (count($cart) > 0)

Total Belanja

Subtotal:

Rp {{ number_format($total_belanja, 0, ',', '.') }}

Total

Rp {{ number_format($total_belanja, 0, ',', '.') }}

{{-- Button Checkout --}} Proses Checkout
@endif
@endsection @section('js') @endsection