fix! contracts table

This commit is contained in:
developer 2026-04-08 12:24:41 +08:00
parent 2e85f70b8a
commit bba500698f

View File

@ -52,12 +52,12 @@
$price = ($contract->price) ? Number::forHumans($contract->price, 2) : '';
$price = str_replace('million', 'млн', $price);
$price = str_replace('thousand', 'тыс', $price);
$price = $price . ' &#8381';
$price = ($price) ? $price . ' &#8381' : '';
$price = str_replace(' ', ' ', $price);
?>
{!! $price !!}
</td>
<!-- <td class="align-middle d-none d-lg-table-cell"> -->
<!-- <td class="align-middle d-none d-lg-table-cell"> -->
<?php
$contract->reward = GetAgentPaymentForContract($contract);
//$contract->reward = $contract->reward ? $contract->reward : 0;