|
- <?php
-
- use yii\helpers\Html;
- use common\helpers\Price;
- use common\models\CreditHistorique;
-
- ?>
-
- <p>Bonjour <?= Html::encode($user->prenom); ?>,</p>
-
- <p>Votre producteur <strong><?= Html::encode($etablissement->nom); ?></strong> vient
- de <?php if($credit_form->type == CreditHistorique::TYPE_CREDIT): ?>créditer<?php else: ?>débiter<?php endif; ?> votre compte de <strong><?= Price::format($credit_form->montant); ?></strong> sur le site <a href="http://www.laboiteapain.net/">La boîte à pain</a>.</p>
-
- <p>Votre compte est désormais à <strong><?= Price::format($user_etablissement->credit); ?></strong></p>
-
- <p>À bientôt.</p>
|