@extends('agent.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 (['id' => 'ID', 'fname' => 'First Name', 'lname' => 'Last Name', 'email' => 'Email', 'phone' => 'Phone', 'city' => 'City', 'state' => 'State', 'listing_id' => 'Listing ID', 'listing_title' => 'Listing Title', 'created_at' => 'Created At', 'assigned_to' => 'Assigned To'] as $key => $label) @endforeach @foreach ($contacts as $contact) @endforeach
{{ strtoupper($label) }}
{{ $contact->id }} {{ $contact->fname }} {{ $contact->lname }} {{ $contact->email }} {{ $contact->phone }} {{ $contact->city ?? '-' }} {{ $contact->state ?? '-' }} {{ $contact->listing_id ?? '-' }} {{ $contact->listing->title ?? '-' }} {{ $contact->created_at->format('Y-m-d') }} {{ $contact->agent->full_name ?? '-' }}
@else

Please select search filters to see results

@endif
@endsection