{{ $quote->quote_id }} |
{{ $quote->client->user->FullName }} |
{{ $quote->client->user->email }} |
{{ \Carbon\Carbon::parse($quote->quote_date)->translatedFormat(currentDateFormat()) }} |
{{ getCurrencyAmount($quote->final_amount, true) }} |
{{ \Carbon\Carbon::parse($quote->due_date)->translatedFormat(currentDateFormat()) }} |
@if($quote->status == \App\Models\Quote::DRAFT)
Draft |
@elseif($quote->status == \App\Models\Quote::CONVERTED)
Converted |
@endif
{{ $quote->client->address ?? 'N/A' }} |
@endforeach
@else