Fix reason while pay insurance invoice

This commit is contained in:
Djery-Tom 2022-10-09 01:25:17 +01:00
parent 5443fb8fa2
commit 0dd7038b7f
3 changed files with 5 additions and 3 deletions

View File

@ -365,7 +365,7 @@ class InsuranceInvoiceController extends Controller
'customer_state' => $user->network->country->code_country, 'customer_state' => $user->network->country->code_country,
'customer_zip_code' => '00237', 'customer_zip_code' => '00237',
'payment_method' => $request->input('payment_method'), 'payment_method' => $request->input('payment_method'),
'reason' => trans('states.receipt'), 'reason' => trans('messages.insurance_invoice'),
'otp' => $request->input('otp') 'otp' => $request->input('otp')
], ],
'http_errors' => false 'http_errors' => false

View File

@ -249,5 +249,6 @@ Your insurance has expired.
'the_invoice' => "the invoice", 'the_invoice' => "the invoice",
'the_payment' => "the payment", 'the_payment' => "the payment",
'care_request_already_been_processed' => "The care request has already been processed", 'care_request_already_been_processed' => "The care request has already been processed",
'successful_authentification' => "Successful authentication" 'successful_authentification' => "Successful authentication",
'insurance_invoice' => "Insurance invoice"
]; ];

View File

@ -266,5 +266,6 @@ Votre assurance est arrivée à échéance.
'the_invoice' => "la facture", 'the_invoice' => "la facture",
'the_payment' => "le paiement", 'the_payment' => "le paiement",
'care_request_already_been_processed' => "La demande de prise en charge a deja ete traitée", 'care_request_already_been_processed' => "La demande de prise en charge a deja ete traitée",
'successful_authentification' => "Authentification réussie" 'successful_authentification' => "Authentification réussie",
'insurance_invoice' => "Facture d'assurance"
]; ];