@extends('layouts/layoutMaster') @section('title', 'Detalle Lead') @section('content')

Detalle del lead

Informacion completa del contacto y contexto de origen.

Volver al listado
Informacion comercial
Negocio
{{ $lead->business_name }}
Tipo de negocio
{{ $lead->business_type }}
Contacto
{{ trim($lead->owner_name . ' ' . $lead->owner_lastname) }}
Ciudad
{{ $lead->city ?: 'Sin especificar' }}
Email
{{ $lead->email }}
Telefono
{{ $lead->phone }}
Mensaje
{{ $lead->message ?: 'Sin mensaje' }}
Estado
@php $statusClass = match ($lead->status) { 'contacted' => 'bg-label-warning', 'closed' => 'bg-label-success', default => 'bg-label-primary', }; @endphp {{ $lead->status }}
WhatsApp promocional
{{ $lead->whatsapp_opt_in ? 'Si' : 'No' }}
Privacidad aceptada
{{ $lead->privacy_accepted_at?->format('d/m/Y H:i') ?: 'No registrada' }}
Origen
Fecha
{{ $lead->created_at?->format('d/m/Y H:i') }}
Fuente
{{ $lead->source_url ?: 'N/A' }}
IP
{{ $lead->ip_address ?: 'N/A' }}
User agent
{{ $lead->user_agent ?: 'N/A' }}
@endsection