@extends('network.layouts.app') @section('title', 'Report - Leads By Date') @section('content')
@if(empty($contacts)) @else @endif @if(!empty($contacts))
{{-- Graph Section --}}
Total Leads

{{ $totalContacts }}

Avg Weekly Leads

{{ $avgWeeklyContacts }}

Report - Leads By Date

{{-- Graph Section --}}

Report - Leads By Date

@foreach ($contacts as $contact) @endforeach
ID First Name Last Name Email Phone City State Listing ID Listing Title Created At Assigned To
{{ $contact->id }} {{ $contact->fname ?? '-' }} {{ $contact->lname ?? '-' }} {{ $contact->email ?? '-' }} {{ $contact->phone ?? '-' }} {{ $contact->city ?? '-' }} {{ $contact->state ?? '-' }} {{ $contact->listing_id ?? '-' }} {{ optional($contact->listing)->title ?? '-' }} {{ optional($contact->created_at)->format('Y-m-d') ?? '-' }} {{ optional($contact->agent)->full_name ?? '-' }}
@else

Please select search filters to see results

@endif
@endsection