@extends('layouts.app') @section('content')
{{ _lang('View Contact') }}

{{ $contact->contact_name??'' }}

{{ $contact->group->name??'' }}

@php $currency = currency(); $base_currency = base_currency(); $date_format = get_company_option('date_format','Y-m-d'); @endphp
{{ _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 }}
@foreach($contact->projects as $project) @endforeach
{{ _lang('Name') }} {{ _lang('Start Date') }} {{ _lang('End Date') }} {{ _lang('Status') }} {{ _lang('Progress') }} {{ _lang('Action') }}
{{ $project->name }} {{ date($date_format,strtotime($project->start_date)) }} {{ date($date_format,strtotime($project->end_date)) }} {!! clean(project_status($project->status)) !!}
{{ $project->progress }}%
{{ csrf_field() }}
@foreach($invoices as $invoice) @endforeach
{{ _lang('Invoice Number') }} {{ _lang('Due Date') }} {{ _lang('Grand Total') }} {{ _lang('Paid') }} {{ _lang('Status') }} {{ _lang('Action') }}
{{ $invoice->invoice_number }} {{ date($date_format,strtotime($invoice->due_date)) }} {{ decimalPlace($invoice->grand_total, $currency) }} {!! strip_tags(invoice_status($invoice->status),'') !!}
@php $currency = currency() @endphp
@foreach($quotations as $quotation) @endforeach
{{ _lang('Quotation Number') }} {{ _lang('Date') }} {{ _lang('Grand Total') }} {{ _lang('Action') }}
{{ $quotation->quotation_number }} {{ date($date_format, strtotime($quotation->quotation_date)) }} {{ decimalPlace($quotation->grand_total, $currency) }}
@foreach($datas as $key=>$data)
{{ _lang('Type') }} {{ _lang('Subscription frequescy') }} {{ _lang('Amount') }} {{ _lang('Payment Mode') }} {{ _lang('Payment status') }} {{ _lang('Payment Date') }} {{ _lang('Status') }} {{ _lang('Action') }}