@extends('layouts.app') @section('title', 'Purchase Order Details') @php $existing = array(); @endphp @section('content')
PO Number:
Project ID:
Supplier Name:
Delivery Date:
Receipt Photo:
Delivery Address:
| Description | @if($purchase_order->sub_contract==0)Plant | Labour | Material | @elseAmount | @endif|
|---|---|---|---|---|---|
| {{ $item->description }} | @if($purchase_order->sub_contract==0)£{{ number_format($item->plant, 2) }} | £{{ number_format($item->labour, 2) }} | £{{ number_format($item->material, 2) }} | @else£{{ number_format($item->sc_total, 2) }} | @endif
|
| TOTAL | @if($purchase_order->sub_contract==0)£{{ number_format($plant, 2) }} | £{{ number_format($labour, 2) }} | £{{ number_format($material, 2) }} | @else£{{ number_format($sc_total, 2) }} | @endif