@extends('layouts.app') @section('title', 'Export Inquiries') @push('styles') @endpush @section('breadcrumbs') @endsection @section('content')
Manage and track all export inquiries
| Inquiry # | Date | Customer | Commodity | Port of Loading | Port of Discharge | Status | Actions |
|---|---|---|---|---|---|---|---|
| {{ $inquiry->inquiry_number }} | {{ $inquiry->date->format('d M Y') }} |
{{ $inquiry->customer->name ?? 'N/A' }}
{{ $inquiry->customer->country ?? '' }}
|
{{ $inquiry->commodity->name ?? 'N/A' }} | {{ $inquiry->port_of_loading ?? 'N/A' }} | {{ $inquiry->port_of_discharge ?? 'N/A' }} | @php $statusClasses = [ 'draft' => 'bg-secondary-subtle text-secondary', 'submitted' => 'bg-info-subtle text-info', 'quoted' => 'bg-primary-subtle text-primary', 'converted' => 'bg-success-subtle text-success', 'cancelled' => 'bg-danger-subtle text-danger', ]; @endphp {{ ucfirst($inquiry->status) }} |
|
|
No inquiries found |
|||||||