@extends('admin.layouts.app') @section('content')
{{--
--}}
@forelse ($leads as $key=>$lead) @empty @endforelse
# For User Lead Type Name Email Phone City Action
{{($key+1) + ($leads->currentPage() - 1)*$leads->perPage()}} {{ucfirst($lead->for_user)}} @if($lead->for_user == 'specific')
{{$lead->user->name}}({{$lead->user->email}}) @endif
{{ucfirst($lead->lead_type)}} @if($lead->lead_type == 'paid')
₹ {{$lead->amount}} @endif
{{$lead->name}} {{$lead->email}} {{$lead->phone??'---'}} {{$lead->city??'---'}} @if($lead->is_acquired == '0')
@method('DELETE') @csrf
@else Acquired @endif

Nothing Found


Showing {{($leads->currentpage()-1)*$leads->perpage()+1}} to {{(($leads->currentpage()-1)*$leads->perpage())+$leads->count()}} of {{$leads->total()}} leads

{!! $leads->links() !!}
@endsection