@extends('layouts.app') @section('css') @endsection @section('content')
{{csrf_field()}}
@if ( count($orderInfo->purchaseOrderDetails) > 0 ) @foreach ($orderInfo->purchaseOrderDetails as $k=>$result ) @if($result->quantity_ordered > $result->quantity_received) @endif @endforeach @endif
{{ $orderInfo->invoice_type == "hours" ? __("Service") : __("Item") }} {{ __("Ordered") }} {{ __('Received') }} {{ __('Remaining') }} {{ __('Receive') }} {{ __('Action') }}
{{ $result->item_name }} {{ formatCurrencyAmount($result->quantity_ordered) }} {{ formatCurrencyAmount($result->quantity_received) }} {{ formatCurrencyAmount($result->quantity_ordered - $result->quantity_received) }}
{{ __('Cancel') }}
@endsection @section('js') {!! translateValidationMessages() !!} @endsection