@extends('layouts.app') @section('title', __('Leads View')) @push('css') @include('panel.inc.datatable.css') @endpush @section('content')
{{ __('Lead Detail') }}
Business / Company

{{ __('Name') }}

{{ $lead->company }}

{{ __('Phone') }}

{{ $company_phone ?? '-' }}

{{ __('Email') }}

{{ $lead->company_email ?? '-' }}

{{ __('Website') }}

{{ $lead->company_website ?? '-' }}
Owner

{{ __('First Name') }}

{{ $lead->first_name }}

{{ __('Last Name') }}

{{ $lead->last_name }}

{{ __('Email') }}

{{ $lead->email }}

{{ __('Phone') }}

{{ $lead->phone }}
Internal

{{ __('Follow Up') }}

@if($lead->follow_up) @include('panel.leads._datetime', ['date' => $lead->follow_up]) @else - @endif

{{ __('Closer') }}

{{ $lead->closer_id ? $lead->closer->name : '-' }} @if(!$lead->closer_id && \Gate::allows('leads-closer-change')) @endif

{{ __('Target Keywords') }}

@if($keywords) @foreach($keywords as $keyword) {{ $keyword }} @endforeach @else - @endif

{{ __('Target Radius Mile') }}

{{ $lead->targeted_radius ?? '-' }}

{{ __('Yelp Profile Link') }}

@if($lead->yelp_profile) Click Here @else - @endif

{{ __('Status') }}

{{ $lead->lead_status }} @include('panel.leads._status', ['status' => $lead->status]) @if(\Gate::allows('leads-status-change')) @endif

{{ __('Additional Notes / Description') }}

{!! nl2br($lead->description) !!}
@if(\Gate::allows('leads-note'))
{{ __('Notes') }}
@foreach($lead->notes as $note)
{{ $note->user->name }}
{!! nl2br($note->note) !!}
{{ $note->created_at->format('M D, Y - h:i A') }}
@endforeach
@if(\Gate::allows('leads-note-add'))
@endif
@endif
@stop @push('script') @endpush