@extends('layouts.app') @section('content') @if (! CartCollection::isEmpty())
@endif @if ($draft)| Produk | Harga Satuan ({{ $draft->type }}) | Action |
|---|---|---|
| {{ $product->name }} | {{ $draft->type == 'cash' ? $product->cash_price : $product->credit_price }} | |
| Produk tidak ditemukan dengan keyword : {{ request('query') }} | ||
| # | Nama Item | Harga Satuan | Qty | Diskon | Subtotal | Action |
|---|---|---|---|---|---|---|
| {{ $key + 1 }} | {{ $item->name }} | {{ formatRp($item->price) }} | {!! Form::open(['route' => ['cart.update-draft-item', $draft->draftKey], 'method' => 'patch']) !!}{!! FormField::text('qty', ['value' => $item->qty, 'id' => 'qty-' . $key, 'style' => 'width:50px', 'label' => false]) !!} | {{ Form::text('item_discount', $item->item_discount, ['id' => 'item_discount-' . $key]) }} | {!! Form::close() !!}{{ formatRp($item->subtotal) }} |