@extends('theme.master') @section('title', 'Profile & Setting') @section('content') @include('admin.message')

Lead View

Lead Detail
Course: @if($lead->cat_type == 1) UPSC @elseif($lead->cat_type == 2) Cat @elseif($lead->cat_type == 3) Banking @elseif($lead->cat_type == 4) SSC @elseif($lead->cat_type == 5) Aviation @elseif($lead->cat_type == 6) UPPCS @elseif($lead->cat_type == 7) BPSC @endif
{{ __('Lead Id') }}: {{ $lead->id }}
Customer {{ __('Name') }}: {{ $lead->name }}
Customer {{ __('Email') }}: {{ $lead->email }}
Customer {{ __('Mobile') }}: {{ $lead->mobile }}

Interest of user


{{ csrf_field() }}

Pitched


{{ csrf_field() }}

Add Follow Up


{{ csrf_field() }}



History
@foreach ($lead_followup as $this_follow) @endforeach
Type Follow Up date Message Created date
@if($this_follow->type == '0') Follow Up @elseif($this_follow->type == '1') Call @elseif($this_follow->type == '2') WA @elseif($this_follow->type == '3') Email @endif @if($this_follow->follow_date != '') {{ date('d-M-Y',strtotime($this_follow->follow_date)) }} @endif
{{ $this_follow->message }}
{{ date('d-M-Y',strtotime($this_follow->created_at)) }}
@endsection @section('custom-script') @endsection