@extends('admin.layouts.app') @section('title', 'Contact') @section('content')

Contact View View and manage contact in detail, you will get a clear idea on the address, past deals, communication and any sales quote recorded.

@if(!empty($contact->thumbnail) && file_exists('uploads/contact/thumbnail/'.$contact->thumbnail)) @else
@endif
@php($class_rating = 'yellow_btn') @if ($contact->contact_status == 1) @php($class_rating = 'orange_btn') @elseif ($contact->contact_status == 2) @php($class_rating = 'yellow_btn') @elseif ($contact->contact_status == 3) @php($class_rating = 'blue_btn') @endif @if(!empty($contact->contact_status)) @foreach ($customer_rating as $key => $status ) @if($contact->contact_status == $key) {{ $status }} @endif @endforeach @else Warm Contact @endif
{{count($opportunity)}} Opportunities
{{count($won_opportunities)}} Won
{{count($ongoing_opportunities)}} In Process

{{ $contact->contact_title.' '.$contact->contact_first_name.' '.$contact->contact_middle_name.' '.$contact->contact_last_name }}

{{!empty($contact->contact_job_title)? $contact->contact_job_title:'Undefined'}}, {{!empty($contact->contact_company)?$contact->contact_company:'Undefined'}} {{--City --}}
Contact Options
  • New Mail
Email
Department
{{!empty($contact->contact_department) ? $contact->contact_department : 'Undefined'}}
Telephone
{{!empty($contact->phone) ? $contact->phone : 'Undefined'}}
Mobile
{{!empty($contact->mobile) ? $contact->mobile : 'Undefined'}}
City
{{(empty($cities->name) || is_null($cities->name))?"Undefined":$cities->name}}
Do not disturb
@if(!empty($donot_disturb) && !empty($contact->donot_disturb)) @foreach ( $donot_disturb as $key => $value) @if($contact->donot_disturb == $key) {{ $value }} @endif @endforeach @else Undefined @endif
State
{{(empty($states->name) || is_null($states->name))?"Undefined":$states->name}}
Address
{{!empty($contact->address) ? $contact->address : 'Undefined'}}
Zipcode
{{!empty($contact->zipcode) ? $contact->zipcode : 'Undefined'}}
@include('admin.bottom.messages')
@include('admin.bottom.opportunity')
@include('admin.bottom.files')
@include('admin.bottom.notes')
@include('admin.bottom.logs')
Related contacts
@include('admin.common-modals.sweet-alert'); @include('admin.common-modals.upload-image'); @include('admin.common-modals.note'); @include('admin.common-modals.upload-file'); @include('admin.common-modals.mail-view'); @include('admin.bottom.file_viewer'); @include('admin.common-modals.newmessage'); @stop @section('styles') @stop @section('admin_js') @include('admin.contact.js.view') @include('admin.common-js.common') @stop