@extends('layouts.app') @section('content')
{{-- PANEL BARANG --}}

Cari Barang

@foreach($barang as $item) @endforeach
Kode Nama Harga
{{ $item->kode_barang }} {{ $item->nama_barang }} Rp {{ number_format($item->harga_jual) }}
@csrf
{{-- KERANJANG --}}

Keranjang Belanja

@csrf
@php $total = 0; @endphp @forelse($cart as $item) @php $total += $item['subtotal']; @endphp @empty @endforelse
Barang Harga Qty Subtotal
{{ $item['nama_barang'] }} Rp {{ number_format($item['harga']) }}
@csrf
Rp {{ number_format($item['subtotal']) }}
@csrf
Keranjang kosong

{{-- TOTAL --}}
@csrf
@endsection @push('js') @endpush