You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 satır
636B

  1. <?php
  2. use yii\helpers\Html;
  3. use common\helpers\Price;
  4. use common\models\CreditHistorique;
  5. ?>
  6. <p>Bonjour <?= Html::encode($user->prenom); ?>,</p>
  7. <p>Votre producteur <strong><?= Html::encode($etablissement->nom); ?></strong> vient
  8. 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>
  9. <p>Votre compte est désormais à <strong><?= Price::format($user_etablissement->credit); ?></strong></p>
  10. <p>À bientôt.</p>