{{ getLoginUserLanguage() == 'cn' ? 'Quotation List' : __('messages.pdf.quotation_list') }} |
{{ getLoginUserLanguage() == 'cn' ? 'Date' : __('messages.pdf.date') }} | {{ getLoginUserLanguage() == 'cn' ? 'Customer Name' : __('messages.pdf.customer_name') }} | {{ getLoginUserLanguage() == 'cn' ? 'Reference' : __('messages.pdf.reference') }} | {{ getLoginUserLanguage() == 'cn' ? 'Total Amount' : __('messages.pdf.total_amount') }} | {{ getLoginUserLanguage() == 'cn' ? 'Status' : __('messages.pdf.status') }} |
---|---|---|---|---|
{{$quotation->date->format('Y-m-d')}} | {{$customer->name}} | {{$quotation->reference_code}} | {{currencyAlignment(number_format((float)$quotation->grand_total , 2))}} | @if($quotation->status == \App\Models\Quotation::SENT) Sent @elseif($quotation->status == \App\Models\Quotation::PENDING) Pending @endif |