{{-- Logo Section --}}
BankKeys Logo
{{-- Header --}}

{{ __('Leads assigned to you') }}

{{ now()->format('d/m/Y à H:i') }}

{{-- Content --}}
{{-- Summary --}}

{{ __('Summary') }}

{{ __('Hello :name, :count lead(s) have been assigned to you. You can find the details below.', ['name' => $user->firstname, 'count' => $leads->count()]) }}

{{-- Stats --}}
{{ $leads->count() }} {{ __('Leads assigned') }}
{{ now()->format('d/m') }} {{ __('Assignment date') }}
{{-- Lead List --}}

{{ __('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
@endforeach {{-- Success Message --}}
✓ {{ __(':count lead(s) successfully assigned', ['count' => $leads->count()]) }}

{{ __('You can now view these leads in your BankKeys dashboard.') }}

{{-- Footer --}}