| {{ ++$key }} |
{{ $inv->invoice_no }} |
{{ $inv->date }} |
{{count($inv->transactions) > 0 ? $inv->transactions->first()->product->name_eng : null}} |
{{ $inv->costCenter?$inv->costCenter->name:'' }} |
{{ $inv->createdBy?$inv->createdBy->name:'' }} |
{{ $inv->net_total }} |
@if ($inv->approve_status == 0)
{{__('obs.stand_by')}}
@elseif ($inv->approve_status == 1)
{{__('obs.pending')}}
@elseif($inv->approve_status == 2)
{{__('obs.approved')}}
@endif
|
@if ($inv->status == 1)
{{__('obs.active')}}
@else
{{__('obs.inactive')}}
@endif
|
@php
$edit_url = $inv->posting_view->edit??'production.edit';
$print_url = $inv->posting_view->print??'production.print';
@endphp
|
@endforeach