Course | Lead Details | Last Follow Up | Lead Status | |
---|---|---|---|---|
@if($user->cat_type == 1) UPSC @elseif($user->cat_type == 2) Cat @elseif($user->cat_type == 3) Banking @elseif($user->cat_type == 4) SSC @elseif($user->cat_type == 5) Aviation @elseif($user->cat_type == 6) UPPCS @elseif($user->cat_type == 7) BPSC @endif |
{{ __('Lead Id') }}: {{ $user->id }} {{ __('Name') }}: {{ $user->name }} {{ __('Email') }}: {{ $user->email }} {{ __('Mobile') }}: {{ $user->mobile }} |
@php
$get_lead_followup=DB::table('lead_followup')->where('lead_id',$user->id)->orderBy('id','Desc')->first();
@endphp
@if(!empty($get_lead_followup))
{{ __('Type') }}: @if($get_lead_followup->type == '0') Follow Up @elseif($get_lead_followup->type == '1') Call @elseif($get_lead_followup->type == '2') WA @elseif($get_lead_followup->type == '3') Email @endif {{ __('Date') }}: {{ date('d-M-Y',strtotime($get_lead_followup->created_at)) }} {{ __('Message') }}: {{ $get_lead_followup->message }} @endif |
@if($user->status == 0) Pending @endif @if($user->status == 1) Cold @endif @if($user->status == 2) Warm @endif @if($user->status == 3) Hot @endif @if($user->status == 4) Not Interested @endif @if($user->status == 5) Closed @endif | View |