@extends('admin.layouts.app') @section('title', 'Leads Report') @section('content')

Leads Report

@csrf
@if ($searched)
X
@endif
@foreach ($rows as $index => $row) @endforeach
Sr No Ticket No Source Customer Name Contact No Address Lead Status Lead Date
{{ $index + 1 }} {{ $row->TicketNo }} {{ $row->ClainReason }} {{ $row->CustName }} {{ $row->CellNo }} {{ $row->Address }} {{ $row->ClainStatus }} {{ $row->CreatedDate ? date('d/m/Y', strtotime($row->CreatedDate)) : '' }}
@endsection @push('scripts') @endpush