{{ _lang('General Information') }} |
| {{ _lang('Customer ID') }} | {{ $contact->customer_id??'' }} |
| {{ _lang('Profile Type') }} | {{ $contact->profile_type??'' }} |
| {{ _lang('Company Name') }} | {{ $contact->company_name??'' }} |
| {{ _lang('Assign Lead') }} | {{ $contact->assignuser->name??'' }} |
| {{ _lang('Current Assign Lead') }} | {{ $contact->assignuser_lead->name??'' }} |
| {{ _lang('Contact Name') }} | {{ $contact->contact_name??'' }} |
| {{ _lang('Type') }} | {{ $contact->group->name }} |
| {{ _lang('Contact Email') }} | {{ $contact->contact_email }} |
| {{ _lang('Contact Phone') }} | {{ $contact->contact_phone }} |
| {{ _lang('Currency') }} | {{ $contact->currency }} ({!! clean(get_currency_symbol( $contact->currency )) !!}) |
| {{ _lang('TimeZone') }} | {!! $contact->zonename->name??'' !!} |
| {{ _lang('States') }} | {!! $contact->zone_state !!} |
| {{ _lang('Address') }} | {!! $contact->address !!} |
| {{ _lang('Remarks') }} | {{ $contact->remarks }} |
| {{ _lang('Name') }} |
{{ _lang('Start Date') }} |
{{ _lang('End Date') }} |
{{ _lang('Status') }} |
{{ _lang('Progress') }} |
{{ _lang('Action') }} |
@foreach($contact->projects as $project)
| {{ $project->name }} |
{{ date($date_format,strtotime($project->start_date)) }} |
{{ date($date_format,strtotime($project->end_date)) }} |
{!! clean(project_status($project->status)) !!} |
{{ $project->progress }}%
|
|
@endforeach
| {{ _lang('Invoice Number') }} |
{{ _lang('Due Date') }} |
{{ _lang('Grand Total') }} |
{{ _lang('Paid') }} |
{{ _lang('Status') }} |
{{ _lang('Action') }} |
@foreach($invoices as $invoice)
| {{ $invoice->invoice_number }} |
{{ date($date_format,strtotime($invoice->due_date)) }} |
{{ decimalPlace($invoice->grand_total, $currency) }} |
{{ decimalPlace($invoice->paid, $currency) }} |
{!! strip_tags(invoice_status($invoice->status),'') !!} |
|
@endforeach
@php $currency = currency() @endphp
| {{ _lang('Quotation Number') }} |
{{ _lang('Date') }} |
{{ _lang('Grand Total') }} |
{{ _lang('Action') }} |
@foreach($quotations as $quotation)
| {{ $quotation->quotation_number }} |
{{ date($date_format, strtotime($quotation->quotation_date)) }} |
{{ decimalPlace($quotation->grand_total, $currency) }} |
|
@endforeach
| {{ _lang('Type') }} |
{{ _lang('Subscription frequescy') }} |
{{ _lang('Amount') }} |
{{ _lang('Payment Mode') }} |
{{ _lang('Payment status') }} |
{{ _lang('Payment Date') }} |
{{ _lang('Status') }} |
{{ _lang('Action') }} |
@foreach($datas as $key=>$data)