@extends('layout.app') @section('styling') @parent @endsection @section('content')
Lead Detail Edit Lead
Name: {{$lead->name}}
Email: {{$lead->email}}
Phone Number: {{$lead->phone_number}}
Hear about us: {{$lead->hear}}
Looking for:
@if($lead->lookings) @foreach($lead->lookings as $looking)
{{$looking->name}}
@endforeach @else

Customer Selected no option

@endif
RCP: {{$lead->rcp}}
@if(count($follow_up_notes) > 0)
@php $count = 0; @endphp @foreach($follow_up_notes as $follow_up_note) @php $count = $count+1; @endphp @endforeach
# Follow Up Notes
{{$count}} {{$follow_up_note->follow_up_note}}
@endif
Attachment: @if($lead->attachments && count($lead->attachments) > 0)
    @foreach($lead->attachments as $attachment)
  • @if (pathinfo($attachment->attachment_url, PATHINFO_EXTENSION) == 'pdf') @else Please choose image @endif
    Take a look
  • @endforeach
@endif
Description: {{$lead->description}}
Follow Up Date: {{$lead->first_follow_up_date}}
Follow Up Date: {{$lead->second_follow_up_date}}
Follow Up Date: {{$lead->third_follow_up_date}}
@endsection @section('javascript') @parent @endsection