{{ __('Summary') }}
{{ __('Hello :name, :count lead(s) have been assigned to you. You can find the details below.', ['name' => $user->firstname, 'count' => $leads->count()]) }}
{{ __('Assigned leads') }}
@foreach($leads as $index => $lead){{ $index + 1 }}
{{ $lead->firstname }} {{ $lead->lastname }}
@if($lead->email)
{{ __('Email') }}: {{ $lead->email }}
@endif
@if($lead->phone_mobile)
{{ __('Mobile') }}: {{ $lead->phone_mobile }}
@endif
@if($lead->phone_main)
{{ __('Phone') }}: {{ $lead->phone_main }}
@endif