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

Customer PO Our Quotations

@csrf @method('put')
@php $customers = \App\Models\Customer::orderBy('name', 'asc')->get(); if($customers->count()){ @endphp @php } @endphp @error('customer_id')
{{ $message }}
@enderror
@php $statuses = ['No Action', 'Under Process', 'In Shipping', 'Delivered', 'Invoiced', 'Cancelled', 'Hold']; if(!empty($statuses)){ @endphp @php } @endphp @error('customer_id')
{{ $message }}
@enderror
@php $our_quotations = \App\Models\OurQuotation::orderBy('quotation_number', 'asc')->get(); if($our_quotations->count()){ @endphp @php } @endphp @error('our_quotation_id')
{{ $message }}
@enderror
date) }}" required disabled/> @error('date')
{{ $message }}
@enderror
edd) }}" required disabled/> @error('edd')
{{ $message }}
@enderror
@error('customer_po_number')
{{ $message }}
@enderror
Reset
@can('Order - CustomerPOs - Parts') @endcan

@php $i = 0; @endphp @foreach( $customerPOOurQuotations as $customerPOOurQuotation ) @endforeach
Row Our Quotation Action
{{ ++$i }} {{ $customerPOOurQuotation->ourQuotation->quotation_number }}
@endsection @section('vendor-script') {{-- Vendor js files --}} @endsection @section('page-script') @endsection