@extends('backend.admin-master') @section('site-title') {{__('Dashboard')}} @endsection @section('content')

Leads / TeleCalling/ {{$user_details->firstname}} {{$user_details->lastname}}

@if(request('sameusererror') == 1)
There is a duplicate user with the same email or phone number. Click Here to view.
@endif
@foreach($user_telecalling as $tl) @endforeach
Telecaller Call Status Sub Status Tags Follow Up Remark State City Date
{{$tl->name}} {{$tl->status}} {{$tl->sub_status}} {{$tl->tags}} @if(!empty($tl->follow_up_date)) {{ \Carbon\Carbon::parse($tl->follow_up_date)->format('d-M-Y @ H:i:s')}} @endif {{$tl->remark}} @if(!empty($tl->interested_products))
Interested Products : {{$tl->interested_products}} @endif @if(!empty($tl->enquiry_detail))
{{$tl->enquiry_detail}} @endif
{{$tl->state_name}} {{$tl->city_name}} {{ \Carbon\Carbon::parse($tl->created_at)->format('d-M-Y @ H:i:s')}}
{{ $user_telecalling->links("pagination::bootstrap-4") }}
@if(request()->has('newcall') && request()->input('newcall') == 1) @endif @endsection