@extends('includes.layouts.admin') @section('page-title') Lead List @endsection @section('content')

Lead List

{{--   --}}
@forelse ($leadList as $index => $lead) @empty @endforelse
Serial No Name Email Phone Number Retailer Created At Status Activate/Deactivate Action
{{ $index+$leadList->firstItem() }} {{ Str::title($lead->name) }} {{ $lead->email }} {{ $lead->country_code . " " . $lead->phone }} {{ Str::title($lead->retailer) }} {{ $lead->created_at }} @if ($lead->status == 1) Active @else Inactive @endif
status ? 'checked' : '' }} id="customSwitch{{ $lead->id }}" data-lead="Lead " data-route="{{ route('admin.lead.updateStatus', $lead->id) }}" >
No Record Found.
@if ($leadList->hasPages()) @endif
@endsection @section('scripts') @include('admin.commonScript.script') @endsection