{{-- Main POS Interface (Only show if tenant is selected or behind modal if blocked) --}}
@forelse($products as $product) @empty

Belum ada produk untuk tenant ini.

@endforelse

Keranjang

@if($selectedTenant) {{ $selectedTenant->name }} @endif
@forelse($cart as $item)

{{ $item['name'] }}

Rp {{ number_format($item['price'], 0, ',', '.') }} x {{ $item['quantity'] }}

{{ $item['quantity'] }}
@empty

Keranjang kosong

@endforelse
Total Rp {{ number_format($total, 0, ',', '.') }}
@if($showCheckoutModal) @endif @if (session()->has('success'))
{{ session('success') }}
@endif