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

Keranjang Belanja

@if(count($items))
@foreach($items as $item)
{{-- Mobile layout --}}
{{ $item['product']->name }}
{{ $item['product']->name }}

@if($item['size']) Ukuran: {{ $item['size'] }} @endif @if($item['color']) | Warna: {{ $item['color'] }} @endif

Rp {{ number_format($item['product']->final_price, 0, ',', '.') }}
{{ $item['qty'] }}
Rp {{ number_format($item['subtotal'], 0, ',', '.') }}
{{-- Desktop layout --}}
{{ $item['product']->name }}
{{ $item['product']->name }}

@if($item['size']) Ukuran: {{ $item['size'] }} @endif @if($item['color']) | Warna: {{ $item['color'] }} @endif

Rp {{ number_format($item['product']->final_price, 0, ',', '.') }}
{{ $item['qty'] }}
Rp {{ number_format($item['subtotal'], 0, ',', '.') }}
@endforeach
Ringkasan Order
Subtotal Rp {{ number_format($total, 0, ',', '.') }}
Estimasi Ongkir Dihitung nanti

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

Klik Checkout untuk melanjutkan ke form pemesanan.

Checkout Sekarang Lanjut Belanja
@else

Keranjang belanja masih kosong

Yuk, mulai belanja sekarang!

Mulai Belanja
@endif
@endsection @push('scripts') @endpush