@php $date_format = get_company_option('date_format','Y-m-d'); @endphp @php $time_format = get_company_option('time_format',24) == '24' ? 'H:i' : 'h:i A'; @endphp @php $currency = currency() @endphp
| Personal Details | Address | ||
|---|---|---|---|
| {{ _lang('Company Name') }} | {{ $lead->company_name }} | {{ _lang('City') }} | {{ $lead->city }} |
| {{ _lang('Name') }} | {{ $lead->name }} | {{ _lang('State') }} | {{ $lead->state }} |
| {{ _lang('Email') }} | {{ $lead->email }} | {{ _lang('Zip') }} | {{ $lead->zip }} |
| {{ _lang('Lead Status') }} | {{ $lead->lead_status->title }} | {{ _lang('Country') }} | {{ $lead->country }} |
| Additional Details | |||
| {{ _lang('Assigned To') }} | {{ $lead->assigned_user->name }} | ||
| {{ _lang('Created Date') }} | {{ date($date_format, strtotime($lead->contact_date)) }} | ||
| {{ _lang('Modified Date') }} | {{ date($date_format, strtotime($lead->updated_at)) }} | ||
| {{ _lang('Website') }} | {{ $lead->website }} | ||
| {{ _lang('Quotation Number') }} | {{ _lang('Quotation To') }} | {{ _lang('Quotation Date') }} | {{ _lang('Grand Total') }} | {{ _lang('Action') }} |
|---|---|---|---|---|
| {{ $quotation->quotation_number }} | {{ $quotation->lead->name }} | {{ date($date_format, strtotime($quotation->quotation_date)) }} |
@if($lead_currency != $currency)
{{ decimalPlace($quotation->grand_total, $currency) }} {{ decimalPlace($quotation->converted_total, $currency) }} @else {{ decimalPlace($quotation->grand_total, $currency) }} @endif |
|
| {{ _lang('Upload Date') }} | {{ _lang('Uploaded') }} | {{ _lang('File') }} | {{ _lang('Remove') }} |
|---|---|---|---|
| {{ date("$date_format $time_format", strtotime($projectfile->created_at)) }} | {{ $projectfile->user->name }} | {{ $projectfile->file }} | {{ _lang('Remove') }} |
|
{{ $note->user->name }}
({{ date("$date_format $time_format", strtotime($note->created_at)) }}) {{ $note->note }} |
|