- {!! view_render_event('admin.leads.view.informations.details.before', ['lead' => $lead]) !!}
-
-
-
-
-
-
- @include('admin::common.custom-attributes.view', [
- 'customAttributes' => app('Webkul\Attribute\Repositories\AttributeRepository')->findWhere([
- 'entity_type' => 'leads',
- ]),
- 'entity' => $lead,
- ])
-
- @if ($lead->stage->code == 'lost')
-
-
{{ __('admin::app.leads.lost-reason') }}
-
{{ $lead->lost_reason }}
-
- @endif
-
-
-
-
- {!! view_render_event('admin.leads.view.informations.details.after', ['lead' => $lead]) !!}
-
-
- {!! view_render_event('admin.leads.view.informations.contact_person.before', ['lead' => $lead]) !!}
-
-
-
-
-
-
-
-
-
Email
-
-
- @include ('admin::common.custom-attributes.view.email', ['value' => $lead->person->emails])
-
-
-
-
-
Contact Numbers
-
-
- @include ('admin::common.custom-attributes.view.phone', ['value' => $lead->person->contact_numbers])
-
-
-
-
-
-
-
- {!! view_render_event('admin.leads.view.informations.contact_person.after', ['lead' => $lead]) !!}
-
-
- {!! view_render_event('admin.leads.view.informations.products.before', ['lead' => $lead]) !!}
-
-
-
-
-
- @if ($lead->products->count())
-
- @foreach ($lead->products as $product)
-
- @endforeach
-
- @else
-
-
![]({{ asset('vendor/webkul/admin/assets/images/empty-table-icon.svg') }})
-
-
{{ __('admin::app.common.no-records-found') }}
-
- @endif
-
-
-
- {!! view_render_event('admin.leads.view.informations.products.after', ['lead' => $lead]) !!}
-
-
- @include('admin::leads.view.stage')
-
- @include('admin::leads.view.activity-action')
-
- @include('admin::leads.view.activity-list')
-