@php $styleCss = 'style'; @endphp
Quote
Quote Id: #{{ $quote->quote_id }}

From :
{{ html_entity_decode(getAppName($quote->tenant_id)) }}
Address: {{ $setting['company_address'] }}
Mo: {{ $setting['company_phone'] }}
To :
Name: {{ $client->user->full_name }}
Email: {{ $client->user->email }}

Quote Date: {{\Carbon\Carbon::parse($quote->quote_date)->translatedFormat(currentDateFormat()) }}
Due Date: {{\Carbon\Carbon::parse($quote->due_date)->translatedFormat(currentDateFormat()) }}
@if(isset($quote) && !empty($quote)) @foreach($quote->quoteItems as $key => $quoteItems) @endforeach @endif
# {{ __('messages.product.product') }} {{ __('messages.invoice.qty') }} {{ __('messages.product.unit_price') }} {{ __('messages.invoice.amount') }}
{{ $key + 1 }} {{ isset($quoteItems->product->name)?$quoteItems->product->name:$quoteItems->product_name??'N/A' }} {{ $quoteItems->quantity }} {{isset($quoteItems->price) ? getCurrencyAmount($quoteItems->price,true): 'N/A' }} {{isset($quoteItems->total) ? getCurrencyAmount($quoteItems->total,true): 'N/A'}}





{{ __('messages.client.notes') }} :

{!! nl2br(($quote->note ?? 'N/A'))!!}


{{ __('messages.invoice.terms') }} :

{!!nl2br(($quote->term ?? 'N/A'))!!}