@php $currency = currency(); @endphp
| {{ _lang('Name') }} |
{{ _lang('Quantity') }} |
{{ _lang('Unit Cost').' '.$currency }} |
{{ _lang('Discount').' '.$currency }} |
{{ _lang('Tax method') }} |
{{ _lang('Tax').' '.$currency }} |
{{ _lang('Sub Total').' '.$currency }} |
{{ _lang('Action') }} |
@foreach($purchase->purchase_return_items as $item)
{{ $item->item->item_name }}
{{ $item->description }}
|
{{ $item->quantity }} |
{{ $item->unit_cost }} |
{{ $item->discount }} |
{{ strtoupper($item->tax_method) }} |
{{ $item->tax_amount }} |
{{ $item->sub_total }} |
|
@endforeach