@extends('back.layouts.app', ['title' => $title]) @section('content')
@include('back.common_views.quicklinks')

Contact Leads Management @if ($contact > 0) {{ $contact }} New @endif

Reset
Leads Listing
@if (request()->input('read_lead', 2) == 1 || request()->input('read_lead', 2) == 2) @else @endif
@csrf
@forelse ($result as $row) @empty @endforelse
ID NAME CONTACT INFO SERVICE ADDRESS REQUEST DATE ACTIONS
#{{ $row->id }} @if ($row->read_lead == 0) @endif
{{ strtoupper(substr($row->name, 0, 1)) }}
{{ $row->name }} {{ $row->lname }}
@if(!empty($row->service)) {{ $row->service }} @else - @endif @if(!empty($row->address)) {{ Str::limit($row->address, 30) }} @if(!empty($row->city) || !empty($row->state))
{{ $row->city }}{{ !empty($row->city) && !empty($row->state) ? ', ' : '' }}{{ $row->state }} @endif @else - @endif
{{ fmtDate($row->dated, 'd M, Y') }}

No leads found matching your criteria.

{{ $result->links() }}
@endsection @section('beforeBodyClose') @include('back.contactus.google_calendar_modal') @include('back.clients.common.sms_script') @endsection