feat: add invoice

This commit is contained in:
2026-05-27 13:14:09 +02:00
parent a01387bb09
commit 1216c8a073
17 changed files with 352 additions and 2 deletions
+3
View File
@@ -119,6 +119,9 @@ return [
'amount' => 'Montant',
'credits_expected' => 'Crédits attendus',
'credits_granted' => 'Crédits crédités',
'invoice_url' => 'URL facture',
'invoice_pdf_url' => 'PDF facture',
'invoice_email_sent_at' => 'Email facture envoyé le',
'stripe_event_id' => 'Stripe event ID',
'stripe_event_type' => 'Événement',
'stripe_customer_id' => 'Stripe customer ID',
+4
View File
@@ -31,6 +31,10 @@ return [
'legal_documents' => [
'not_found' => 'Document légal introuvable.',
],
'billing' => [
'active_subscription_exists' => 'Tu as déjà un abonnement en cours.',
'no_active_subscription' => 'Aucun abonnement actif à gérer.',
],
'notifications' => [
'test_title' => 'Test',
'test_body' => 'Notification test depuis Laravel API.',
+15
View File
@@ -33,4 +33,19 @@ return [
'password_confirmation' => 'Confirmer le mot de passe',
'submit' => 'Modifier le mot de passe',
],
'payment_invoice' => [
'subject' => 'Ta facture Bowli',
'title' => 'Ta facture est disponible',
'greeting' => 'Bonjour :name,',
'default_name' => 'à toi',
'intro' => 'Merci pour ton paiement. Tu trouveras ci-dessous le récapitulatif et le lien vers ta facture.',
'product' => 'Produit',
'default_product' => 'Crédits Bowli',
'credits' => 'Crédits',
'amount' => 'Montant',
'unknown_amount' => 'Montant indisponible',
'action' => 'Voir ma facture',
'pdf_link' => 'Lien PDF :',
'footer' => 'Si tu as une question, réponds simplement à cet email.',
],
];