fix payment currency issue

This commit is contained in:
brijraj_04
2021-02-02 17:22:44 +05:30
parent 7b95ccb5fc
commit 3695e7d075

View File

@ -258,7 +258,7 @@
color: #595959; color: #595959;
} }
.total-display-box span { .total-display-box .total-color {
float: right; float: right;
font-weight: bold; font-weight: bold;
font-size: 14px; font-size: 14px;
@ -336,7 +336,7 @@
</div> </div>
<div class="total-display-box"> <div class="total-display-box">
<p class="total-display-label">@lang('pdf_payment_amount_received_label')</p> <p class="total-display-label">@lang('pdf_payment_amount_received_label')</p>
<span>{!! format_money_pdf($payment->amount, $payment->user->currency) !!}</span> <span class="total-color">{!! format_money_pdf($payment->amount, $payment->user->currency) !!}</span>
</div> </div>
</body> </body>
</html> </html>