{{ trans('admin/main.item') }} | {{ trans('update.quantity') }} | {{ trans('public.price') }} | {{ trans('panel.discount') }} | {{ trans('update.delivery_fee') }} | {{ trans('cart.total') }} |
---|---|---|---|---|---|
{{ !empty($product) ? $product->title : trans('update.delete_item') }}
@if(!empty($order->specifications))
(
@foreach(json_decode($order->specifications,true) as $specificationKey => $specificationValue)
{{ str_replace('_',' ',$specificationValue) }}{{ (!$loop->last) ? ', ' : '' }}
@endforeach
)
@endif
|
{{ $order->quantity }} {{ trans('cart.item') }} | @if(!empty($sale->amount)) {{ handlePrice($sale->amount) }} @else {{ trans('public.free') }} @endif | @if(!empty($sale->discount)) {{ handlePrice($sale->discount) }} @else - @endif | @if(!empty($sale->product_delivery_fee)) {{ handlePrice($sale->product_delivery_fee) }} @else - @endif | @if(!empty($sale->total_amount)) {{ handlePrice($sale->total_amount) }} @else 0 @endif |