@extends('layouts/contentLayoutMaster') @section('title', 'Vendor PO Customer POs') @section('vendor-style') @endsection @section('page-style') {{-- Page Css files --}} @endsection @section('content')
@include('content.partial.form-message')

Vendor PO Customer POs

@csrf @method('put')
@php $vendors = \App\Models\Vendor::orderBy('name', 'asc')->get(); if($vendors->count()){ @endphp @php } @endphp @error('vendor_id')
{{ $message }}
@enderror
@php $statuses = ['No Action', 'Ordered', 'PI', 'Payment', 'Receipt', 'AWB', 'Delivered HK', 'Delivered TR', 'Invoiced', 'Cancelled', 'Hold']; if(!empty($statuses)){ @endphp @php } @endphp @error('vendor_id')
{{ $message }}
@enderror
@php $customer_pos = \App\Models\CustomerPO::orderBy('customer_po_number', 'asc')->get(); if($customer_pos->count()){ @endphp @php } @endphp @error('customer_po_id')
{{ $message }}
@enderror
date) }}" required disabled/> @error('date')
{{ $message }}
@enderror
edd) }}" required disabled/> @error('date')
{{ $message }}
@enderror
@error('our_po_number')
{{ $message }}
@enderror
Reset
@can('Order - VendorPOs - Parts') @endcan

@php $i = 0; @endphp @foreach( $vendorPOCustomerPOs as $vendorPOCustomerPO ) @endforeach
Row Customer PO Action
{{ ++$i }} {{ $vendorPOCustomerPO->customerPO->customer_po_number }}
@endsection @section('vendor-script') {{-- Vendor js files --}} @endsection @section('page-script') @endsection