{{ $lead->name ? strtoupper(substr($lead->name, 0, 2)) : '?' }}
@if($lead->message)
{{ __('messages.dashboard.status_' . $lead->status) }}
{{ $lead->form_completion_percentage }}% {{ __('messages.dashboard.label_completion') }}
@if($lead->isQuoteLead())
{{ __('messages.dashboard.badge_quote') }}
@endif
@if($lead->hasContactActivity() && $lead->isQuoteLead())
{{ __('messages.dashboard.badge_quote_contact') }}
@endif
@if($lead->isQuoteLead() && ($lead->quote_completion_percentage ?? 0) > 0)
{{ __('messages.dashboard.quote_progress', ['percent' => $lead->quote_completion_percentage, 'step' => $lead->quote_step ?: '—']) }}
@endif @if($lead->email) {{ $lead->email }} @elseif($lead->phone) {{ $lead->phone }} @else{{ __('messages.dashboard.no_email_yet') }}
@endif{{ Str::limit(preg_replace('/\s+/', ' ', trim($lead->message)), 140) }}
{{ __('messages.dashboard.market_' . $lead->market) }}
@if($lead->service_name)
@php $displayServices = \App\Helpers\LeadTrackingHelper::formatContactServices($lead->service_name, $lead->locale); @endphp
{{ $displayServices }}
@endif
@if($lead->estimated_price_min && $lead->estimated_price_max)
€{{ number_format((float) $lead->estimated_price_min, 0) }}–€{{ number_format((float) $lead->estimated_price_max, 0) }}
@endif
{{ $sourceLabel }}
@if($deviceLabel)
{{ $deviceLabel }}
@endif
{{-- Action bar --}}
{{ __('messages.dashboard.view_lead') }}
@if($lead->email)
{{ __('messages.dashboard.link_email') }}
@endif
@if($lead->phone)
{{ __('messages.dashboard.link_call') }}
@endif