mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-27 11:41:09 -04:00
Merge pull request #375 from sebastiancretu/fix_payment_receipt_currency
fix(payments): display the currency in receipts
This commit is contained in:
@ -258,7 +258,7 @@
|
||||
color: #595959;
|
||||
}
|
||||
|
||||
.total-display-box span {
|
||||
.total-display-box .amount {
|
||||
float: right;
|
||||
font-weight: bold;
|
||||
font-size: 14px;
|
||||
@ -336,7 +336,7 @@
|
||||
</div>
|
||||
<div class="total-display-box">
|
||||
<p class="total-display-label">@lang('pdf_payment_amount_received_label')</p>
|
||||
<span>{!! format_money_pdf($payment->amount, $payment->user->currency) !!}</span>
|
||||
<span class="amount">{!! format_money_pdf($payment->amount, $payment->user->currency) !!}</span>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user