@extends('back.layouts.app', ['title' => $title]) @section('content')
{{-- {!!getBC('Details',$bcArr)!!} --}}
@include('back.common_views.quicklinks')

Details of: {!! $result->name !!} {!! $result->lname !!}

Lead Information
First Name:
{{ $result->name }}
Last Name:
{{ $result->lname }}
Company:
{{ $result->company_name ?? '-' }}
Address:
{{ $result->address ?? '-' }}
City/State:
{{ $result->city ?? '-' }}, {{ $result->state ?? '-' }}
Zip Code:
{{ $result->zip_code ?? '-' }}

Subject:
{{ $result->subject }}
Tax Exempt:
{{ $result->tax_exempt ?? 'No' }}
Lead Cost:
${{ number_format($result->price, 2) }}
Enrolled Date:
{{ date('d M, Y', strtotime($result->dated)) }}
Activity History
@if ($pre) @endif @if ($next) @endif
@if(count($history) > 0) @foreach ($history as $key => $val)
@if ($val->ref == 1) @elseif($val->ref == 2) @elseif($val->ref == 3) @else @endif
{{ format_date($val->created_at, 'date') }}
{{ format_date($val->created_at, 'time_only') }}

{{ $val->msg }}

Action by {{ $val->admin->name }}
@endforeach @else

No activity history found for this lead.

@endif
@if(count($history) > 0) @endif
@endsection @section('beforeBodyClose') @endsection