@extends('emails.layout') @section('body')

Nouvelle demande Enterprise

Une nouvelle demande d’abonnement Enterprise (paiement cash) vient d’être soumise.

Entreprise : {{ $data['company']->name ?? 'N/A' }}
Demandeur : {{ $data['user']->name ?? 'N/A' }} ({{ $data['user']->email ?? 'N/A' }})
Téléphone : {{ $data['invoice']->tel ?? 'N/A' }}
Montant estimé : {{ isset($data['invoice']) ? number_format($data['invoice']->amount_paid, 2, ',', ' ') : '0,00' }} {{ $data['invoice']->currency ?? '' }}
Référence (si fournie) : {{ $data['invoice']->cash_reference ?? 'N/A' }}
Date : {{ optional($data['invoice']->created_at)->format('d/m/Y H:i') ?? '' }}

@if(!empty($data['invoice']->notes))

Notes :
{!! nl2br(e($data['invoice']->notes)) !!}

@endif
Voir dans l’admin
@endsection