Generate Lead
<< Go Back
{{ session('success') }}
@endif
| S.no | Name | Phone No. | City | State | Interest In | Joint Lead | Action | |||
|---|---|---|---|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $lead->name }} | {{ $lead->phone }} | @php $state = DB::table('states') ->where('id', $lead->state) ->select('name') ->first(); $city = DB::table('cities') ->where('id', $lead->city) ->select('name') ->first(); @endphp @if($city){{$city->name}} | @else- | @endif @if($state){{ $state->name }} | @else- | @endif{{$lead->product_interest}} | @php $jointuser = DB::table('users') ->where('id', $lead->joint_user_id) ->select('user_id') ->first(); @endphp @if($jointuser){{ $jointuser->user_id }} | @else- | @endif