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

Customer RFQ Parts

@if($customer_rfq_part->inventory_id)
@csrf @method('patch') @else @csrf @method('put') @endif
logo
@error('customer_rfq_number')
{{ $message }}
@enderror
@php $customers = \App\Models\Customer::orderBy('name', 'asc')->get(); if($customers->count()){ @endphp @php } @endphp @error('customer_id')
{{ $message }}
@enderror
date) }}" required disabled/> @error('date')
{{ $message }}
@enderror
@error('our_rfq_number')
{{ $message }}
@enderror
@php $statuses = ['No Action', 'Under Process', 'No Quote', 'Done']; if(!empty($statuses)){ @endphp @php } @endphp @error('customer_id')
{{ $message }}
@enderror
@php $parts = \App\Models\Inventory::orderBy('part_number', 'asc')->get(); if($parts->count()){ @endphp @php } @endphp @error('inventory_id')
{{ $message }}
@enderror
@error('quantity')
{{ $message }}
@enderror
@error('priority')
{{ $message }}
@enderror
@error('note')
{{ $message }}
@enderror
@if($customer_rfq_part->inventory_id) @else @endif Reset
@csrf @method('put')
@error('file')
{{ $message }}
@enderror
Sample File
@php if( is_file(public_path('storage/' . $customer_rfq->file_path)) ){ echo "File"; } @endphp

@php $i = 0; @endphp @foreach( $customerRfqParts as $customerRfqPart ) @endforeach
Row Part Number Description Quantity Priority Note Action
{{ ++$i }} @can('Business - Inventories - List') @endcan {{ $customerRfqPart->inventory->part_number }} @can('Business - Inventories - List') @endcan {{ $customerRfqPart->inventory->description }} {{ $customerRfqPart->quantity }} {{ $customerRfqPart->priority }} {{ $customerRfqPart->note }}
@endsection @section('vendor-script') {{-- Vendor js files --}} @endsection @section('page-script') @endsection