@extends('network.layouts.app') @section('title', 'Report - Leads By Listings') @section('content')
@if(empty($listings))
@else
@endif @if(!empty($listings))
{{-- Graph Section --}}
Total Leads
{{ $totalContacts }}
Listings with Leads
{{ $totalContacts }}/{{ $totalListings }}
Report - Leads By Listing
@foreach ($listings as $listing) @endforeach
Copy
CSV
Excel
PDF
Print
Search:
LISTING ID
LISTING TITLE
CITY
COUNTY
STATE
STATUS
REP
LEAD
{{ $listing->id }}
{{ $listing->title }}
{{ $listing->city }}
{{ $listing->county }}
{{ $listing->state }}
{{ $listing->status }}
{{ $listing->listingRep->full_name ?? 'N/A' }}
{{ $listing->contacts_count }}
Showing 1 to 1 of 1 entries
Previous
1
Next
@else
Please select search filters to see results
@endif
@endsection