{# templates/entreprise/wallet/index.html.twig #} {% extends 'entreprise/entreprise_base.html.twig' %} {% block title %}Mon Portefeuille | {{ app.user.entreprise.raisonSociale }}{% endblock %} {% block body %}
Gestion des crédits et transactions de {{ app.user.entreprise.raisonSociale }}
Crédits utilisables pour vos abonnements.
Certifié SSL par nos partenaires bancaires.
Sélectionnez un montant prédéfini ou saisissez manuellement votre recharge.
| Date & Heure | Désignation | Type | Montant | Statut |
|---|---|---|---|---|
| {{ transaction.createdAt|date('d/m/Y') }} {{ transaction.createdAt|date('H:i') }} |
{{ transaction.libelle }}
REF_{{ transaction.id }}
|
{% set badgeStyle = { 'RECHARGEMENT': 'bg-soft-info text-info', 'PAIEMENT_ABO': 'bg-soft-warning text-warning', 'REMBOURSEMENT': 'bg-soft-success text-success' }[transaction.type] | default('bg-soft-secondary text-secondary') %} {{ transaction.type }} | {{ transaction.montant > 0 ? '+' : '' }}{{ transaction.montant|number_format(0, '.', ' ') }} F.CFA | Confirmé |
|
Aucune transaction enregistrée pour le moment. |
||||