@extends('layouts.admin') @section('title', 'Lead Details - PropertyConnect') @push('styles') @endpush @section('content')

Lead Details

Information about {{ $lead->first_name }} {{ $lead->last_name }}

Edit Back
{{-- Personal Info --}}
Personal Information

First Name: {{ $lead->first_name }}

Last Name: {{ $lead->last_name }}

Email: {{ $lead->email }}

Phone: {{ $lead->phone }}


{{-- Lead Details --}}
Lead Details

Status: {{ ucfirst($lead->status) }}

Priority: {{ ucfirst($lead->priority) }}

Source: {{ ucfirst(str_replace('_',' ', $lead->source)) }}


{{-- Lead Tags --}}
Lead Tags
@php $tags = $lead->tags ? json_decode($lead->tags, true) : []; @endphp @if(!empty($tags))
    @foreach($tags as $tag)
  • {{ ucfirst($tag) }}
  • @endforeach
@else

No tags assigned

@endif
Lead Interest
@if(!empty($session)) @foreach($session as $value) {{$value->title}} @endforeach @endif
@endsection @push('scripts') @endpush