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

Keranjang Belanja

Lanjut Belanja
@if (count($cartItems) > 0)
Daftar Produk
@csrf @method('DELETE')
@foreach ($cartItems as $item)
@if ($item['product']->image) {{ $item['product']->name }} @else
@endif
{{ $item['product']->name }}

{{ Str::limit($item['product']->description, 50) }}

Rp {{ number_format($item['product']->price, 0, ',', '.') }}
@csrf @method('PUT')
Rp {{ number_format($item['subtotal'], 0, ',', '.') }}
@csrf @method('DELETE')
@endforeach
Ringkasan Belanja
Total Item: {{ array_sum(array_column($cartItems, 'qty')) }} item
Subtotal: Rp {{ number_format($total, 0, ',', '.') }}

Total: Rp {{ number_format($total, 0, ',', '.') }}
Informasi
  • • Gratis ongkir untuk pembelian minimal Rp 50.000
@else

Keranjang Belanja Kosong

Sepertinya Anda belum menambahkan produk ke keranjang

Mulai Belanja
@endif
@endsection