@extends('admin.layout') @section('title', 'Lead Details') @section('page-title', 'Lead Details') @section('page-icon', 'funnel') @section('content')
Edit Back
Name {{ $lead->name }}
Status @php $colors = ['new'=>'primary','contacted'=>'info','proposal'=>'warning','won'=>'success','lost'=>'danger']; @endphp {{ ucfirst($lead->status) }}
Email {{ $lead->email ?: '-' }}
Phone {{ $lead->phone ?: '-' }}
Source {{ $lead->source ? ucwords(str_replace('_', ' ', $lead->source)) : '-' }}
Assigned To {{ $lead->assignedUser?->name ?? '-' }}
Team {{ $lead->team?->name ?? '-' }}
Created {{ $lead->created_at->format('d M Y, h:i A') }}
Notes {{ $lead->notes ?: '-' }}
@endsection