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

Keranjang Belanja

{{-- Alert Notification --}} @if (session('success')) @endif @if (count($cart) > 0)
@php $total_belanja = 0; @endphp @foreach ($cart as $id => $details) @php $total = $details['price'] * $details['quantity']; $total_belanja += $total; @endphp @endforeach
Produk Harga Jumlah Total
{{ $details['name'] }}
Rp {{ number_format($details['price'], 0, ',', '.') }}
Rp {{ number_format($total, 0, ',', '.') }}
@csrf @method('DELETE')
Ringkasan Belanja
Subtotal Rp {{ number_format($total_belanja, 0, ',', '.') }}
Total Rp {{ number_format($total_belanja, 0, ',', '.') }}
Checkout Sekarang Lanjut Belanja
@else

Keranjang Kosong

Yuk isi dengan beras berkualitas kami.

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