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

View Leads Add Lead

@foreach ($leads as $index => $row) @endforeach
Sr No Ticket No Source Customer Name Contact No Address Lead Status Lead Date Action
{{ $index + 1 }} {{ $row->TicketNo }} {{ $row->ClainReason }} {{ $row->CustName }} {{ $row->CellNo }} {{ $row->Address }} {{ $row->ClainStatus }} {{ $row->CreatedDate ? $row->CreatedDate->format('d/m/Y') : '' }}
@csrf @method('DELETE')
@endsection @push('scripts') @endpush