@php
$showParkFollowUp = true;
@endphp
@include('leads.partials.index-table-colgroup', ['showParkFollowUp' => true])
@include('leads.partials.index-table-head', ['showParkFollowUp' => true])
@forelse (($leads ?? []) as $lead)
@include('leads.partials.index-table-row', [
'lead' => $lead,
'convertUrl' => '',
'showParkFollowUp' => true,
])
@empty
|
@if (! empty($isDealerWideView))
No parked leads match the selected filters.
@else
No parked leads for this period. Select a row on Active Leads and choose Park to add one with a follow-up date.
@endif
|
@endforelse