@extends('layouts.backend') @section('mainContentArea')

{{ $FLAG ? 'Approved Purchase Order' : 'Purchase Order of Assets' }}

Back
@if ($FLAG)

Filter

INWARD ACTION
@endif @foreach ($assets as $key => $asset) @if ($FLAG) @else @endif @endforeach
S.N PO From Vendor Details Total Items Total Qty Total Tax Total Amt Approved Actions
{{$key + 1 }} {{ $asset->reference }} {{ !empty($asset->warehouse->name) ? $asset->warehouse->name : '' }} {{ !empty($asset->supplierInfo->name) ? $asset->supplierInfo->name : '' }} {{ empty($asset->details) ? 'N/A' : $asset->details }} {{ $asset->totalitem }} {{ $asset->totalqty }} {{ $asset->totaltax }} {{ $asset->totalamt }} {{ empty($asset->is_approved) ? 'No' : 'Yes' }} @if($asset->po_inward == 0) Inward @endif Order Slip Approve Order Slip Modify
@foreach ($assets as $asset) @endforeach @endsection @section('extraJs') @endsection