@extends('admin.layouts.app')
@section('title', 'View Leads')
@section('content')
| Sr No |
Ticket No |
Source |
Customer Name |
Contact No |
Address |
Lead Status |
Lead Date |
Action |
@foreach ($leads as $index => $row)
| {{ $index + 1 }} |
{{ $row->TicketNo }} |
{{ $row->ClainReason }} |
{{ $row->CustName }} |
{{ $row->CellNo }} |
{{ $row->Address }} |
{{ $row->ClainStatus }} |
{{ $row->CreatedDate ? $row->CreatedDate->format('d/m/Y') : '' }} |
|
@endforeach
@endsection
@push('scripts')
@endpush