@extends('layouts.app') @section('title', 'Lead Details') @section('content')
{{-- customer Information --}}
Owner / Lead Information

Name:

{{ $lead->name }}

Phone:

{{ $lead->phone }}

Email:

{{ $lead->email ?? '-' }}

Quick Actions
Notes

{{ $lead->note ?? '-' }}

{{-- assigned user --}}
Assigned User

Name:

{{ $lead->user->name ?? '-' }}

Role:

{{ $lead->user->role->name ?? '-' }}

Company:

{{ $lead->user->company->name ?? '-' }}

Email:

{{ $lead->user->email ?? '-' }}

Phone:

{{ $lead->user->phone ?? '-' }}

Activities

    {{-- @foreach($lead->activities as $activity)
  • {{ $activity->title }}
    {{ $activity->created_at->format('d M Y, H:i') }}
  • @endforeach --}}

Lead Information

Name:

{{ $lead->name }}

Email:

{{ $lead->email }}

Phone:

{{ $lead->phone }}

Please provide a title for the document.
{{-- @foreach($lead->documents as $document) @endforeach --}}
Title Uploaded At Actions
{{ $document->title }} {{ $document->created_at->format('d M Y') }} Download
@csrf @method('DELETE')

Notes

{{ $lead->note ?? '-' }}

Data

{{ json_encode($lead->data, JSON_PRETTY_PRINT) }}
{{-- Source Information --}}
Source Information

Portal:

{{ $lead->portal ?? '-' }}

Reference:

{{ $lead->reference ?? '-' }}

Portal Lead ID:

{{ $lead->portal_lead_id ?? '-' }}

{{-- Service / Product Information --}}
Service / Product Information

Stage: {{ $lead->stage->name ?? '-' }}

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

Company: {{ $lead->company->name ?? '-' }}

Data:

{{ json_encode($lead->data, JSON_PRETTY_PRINT) }}
@endsection