|
- <?php
-
-
-
- use yii\helpers\Html;
- use common\helpers\Price;
- use common\models\CreditHistorique;
-
- ?>
-
- <p>Bonjour <?= Html::encode($user->name); ?>,</p>
-
- <p>Votre producteur <strong><?= Html::encode($producer->name); ?></strong> vient
- de <?php if($creditForm->type == CreditHistory::TYPE_CREDIT): ?>créditer<?php else: ?>débiter<?php endif; ?> votre compte de <strong><?= Price::format($creditForm->amount); ?></strong> sur le site <a href="http://www.opendistrib.net/">distrib</a>.</p>
-
- <p>Votre compte est désormais à <strong><?= Price::format($userProducer->credit); ?></strong><br />
- <a href="<?= Yii::$app->urlManagerProducer->createAbsoluteUrl(['credit/history','slug_producer' => $producer->slug]) ?>">Cliquez ici</a> pour voir l'historique de votre crédit.</p>
-
- <p>À bientôt.</p>
|