ultimatepos/Modules/Crm/Resources/views/lead/partial/lead_info.blade.php

38 lines
1.3 KiB
PHP

<div class="row">
<div class="col-md-8">
@if(!empty($contact->crm_lead_title))
<h4>{{ $contact->crm_lead_title }}</h4>
@endif
@if(!empty($contact->crm_lead_description))
<p class="text-muted">{{ $contact->crm_lead_description }}</p>
@endif
@include('contact.partials.contact_info_tab', ['reward_enabled' => 0])
</div>
<div class="col-md-4 mt-56">
@if(!is_null($contact->crm_lead_value) && $contact->crm_lead_value !== '')
<strong><i class="fas fa-money-bill-wave"></i>
@lang('crm::lang.lead_value')
</strong>
<p>@format_currency($contact->crm_lead_value)</p>
@endif
@if(!empty($contact->Source))
<strong><i class="fas fa fa-search"></i>
@lang('crm::lang.source')
</strong>
<p>{{$contact->Source->name}}</p>
@endif
@if(!empty($contact->lifeStage))
<strong><i class="fas fa fa-life-ring"></i>
@lang('crm::lang.status')
</strong>
<p>{{$contact->lifeStage->name}}</p>
@endif
<strong><i class="fas fa-users"></i>
@lang('crm::lang.assgined')
</strong> <br>
<p>
@includeIf('components.avatar', ['max_count' => '10', 'members' => $contact->leadUsers])
</p>
</div>
</div>