Hello, Welcome {{auth()->user()->name}}
Coordination Leads
{{-- Add New Plan --}}S# | Lead No | Date and Time | Customer Name | Activation Agent Name | Plan Name | Sim Type | Selected No | Status | Attend | |
---|---|---|---|---|---|---|---|---|---|---|
{{++$key}} | {{$item->lead_id}} | {{$item->created_at}} | {{$item->customer_name}} | @php $Agent = \App\User::whereId($item->assign_to)->first() @endphp {{$Agent->name}} {{-- {{$item->assign_to}} --}} | @if ($item->sim_type == 'Elife') @php $plan = \App\elife_plan::whereId($item->select_plan)->first() @endphp {{$plan->plan_name}} @else @php $plan = \App\plan::whereId($item->select_plan)->first() @endphp {{$plan->plan_name}} @endif | {{$item->sim_type}} | {{$item->selected_number}} | {{$item->status_name}} | {{-- View remarks --}} {{-- | --}}
@if(auth()->user()->role == 'MainCoordinator')
{{-- View remarks --}}
{{-- --}}
{{-- MODAL REJECT --}}
{{--
{!!
Form::model($item,['method'=>'post','action'=>['AjaxController@LeadReAssign',$item->id]])
!!}
--}}
@endif
|