| # |
Supplier |
Subtotal |
Paid |
Due |
Total |
Date |
Action |
@if(isset($purchasing) && !empty($purchasing))
@foreach($purchasing as $row)
| {{$row->id}} |
{{$row->supplier}}
@if($row->type == 'purchase')
Purchase
@else
Return
@endif
|
{{$row->subtotal}} |
{{$row->paid}} |
{{$row->due}} |
{{$row->total}} |
{{date('d-M-Y', strtotime($row->date))}}
|
|
@endforeach
@endif
@if(isset($purchasing) && !empty($purchasing))
{{$purchasing->appends($_GET)->links()}}
@endif