@extends('layouts.app') @section('title','Quotations') @section('page_title','Customer Quotations') @section('content')
@forelse($quotations as $q)@empty@endforelse
QuotationDateCustomerExpiryTotalStatus
{{ $q->quotation_number }}
Version {{ $q->version }}
{{ $q->quotation_date->format('d M Y') }}{{ $q->party?->legal_name }}{{ $q->expiry_date?->format('d M Y') ?? '—' }}{{ $q->currency_code }} {{ number_format((float)$q->grand_total,2) }}{{ ucwords(str_replace('_',' ',$q->status)) }}Open
No quotations found.
@endsection