@extends('backend.master_structure') @section('content')

My Notifications

{{--
 
--}}
@if(count($leads_details)>0) @foreach($leads_details as $leads) @if($leads->status !=6) @endif @endforeach @else @endif
ID Name Location Date Matched Lead Status
{{$leads->lead_id}} {{$leads->lead_name}} {{$leads->lead_location}} {{date('d-m-Y',strtotime($leads->lead_matched))}} @if($leads->lead_status==1 ) Pending @elseif($leads->lead_status==2) Accepted @else Declined @endif View More
No Leads Available
@endsection