@extends('layouts.app') @section('title', 'Export Quotations') @push('styles') @endpush @section('breadcrumbs') @endsection @section('content')
Manage export quotations and proposals
| Quotation # | Date | Inquiry # | Customer | Commodity | Amount | Status | Actions |
|---|---|---|---|---|---|---|---|
| {{ $quotation->quotation_number }} | {{ $quotation->created_at->format('d M Y') }} | {{ $quotation->inquiry->inquiry_number ?? '' }} | {{ $quotation->customer->name ?? 'N/A' }} | {{ $quotation->commodity->name ?? 'N/A' }} | {{ number_format($quotation->total_amount, 2) }} {{ $quotation->currency }} | @php $statusMap = [ 'draft' => 'bg-secondary-subtle text-secondary', 'sent' => 'bg-primary-subtle text-primary', 'accepted' => 'bg-success-subtle text-success', 'rejected' => 'bg-danger-subtle text-danger', 'expired' => 'bg-warning-subtle text-warning', ]; @endphp {{ ucfirst($quotation->status) }} |
|
|
No quotations found |
|||||||