@extends('layouts.app')
@section('content')
{{-- PANEL BARANG --}}
| Kode |
Nama |
Harga |
|
@foreach($barang as $item)
|
{{ $item->kode_barang }}
|
{{ $item->nama_barang }}
|
Rp {{ number_format($item->harga_jual) }}
|
|
@endforeach
{{-- KERANJANG --}}
| Barang |
Harga |
Qty |
Subtotal |
|
@php
$total = 0;
@endphp
@forelse($cart as $item)
@php
$total += $item['subtotal'];
@endphp
|
{{ $item['nama_barang'] }}
|
Rp {{ number_format($item['harga']) }}
|
|
Rp {{ number_format($item['subtotal']) }}
|
|
@empty
|
Keranjang kosong
|
@endforelse
{{-- TOTAL --}}
@endsection
@push('js')
@endpush