@extends('landingpage.layouts.main') @section('content')

Keranjang Belanja

@php $stokKurang = false; @endphp @foreach($keranjangs as $keranjang) @php $stokTersedia = $keranjang->produk->stok->jumlah_stok ?? 0; $harga = $keranjang->produk->harga ?? 0; if($keranjang->jumlah > $stokTersedia) { $stokKurang = true; } @endphp @endforeach
Produk Jumlah Harga Total Aksi
jumlah > $stokTersedia ? 'disabled' : '' }}>
{{ $keranjang->produk->nama_produk }}
@if($keranjang->jumlah > $stokTersedia) ⚠️ Stok tersisa {{ $stokTersedia }} @endif
@csrf @method('PUT') {{ $keranjang->jumlah }}
Rp {{ number_format($harga, 0, ',', '.') }} Rp {{ number_format($keranjang->jumlah * $harga, 0, ',', '.') }}
@csrf @method('DELETE')
@if($keranjangs->isEmpty())

Keranjang masih kosong

@else
Total: Rp 0
@endif
@endsection