@extends('adminlte::page') @section('title', 'Invoice') @section('content_header')
| Qty | Product | Item Code # | Item Weight # | Price | Subtotal |
|---|---|---|---|---|---|
| {{$qty}} | {{$key['item_name']}} |
@foreach($key['order_detail'] as $k => $od)
@if($k>0)
, @endif {{$od->item_stock_code}} @endforeach |
@ {{$key['item_weight']}} gr | Rp. {{number_format($key['item_price'],0,",",".")}} | Rp. {{number_format($total,0,",",".")}} |
| Total: | Rp. {{number_format($totalAll,0,",",".")}} | ||||