Browse Source

交易费

master
lemon 4 years ago
parent
commit
aef41a2b2b
  1. 5
      app/AdminSupplier/Controllers/FinanceStatisticsController.php

5
app/AdminSupplier/Controllers/FinanceStatisticsController.php

@ -109,10 +109,11 @@ HTML;
});
$row->column(3, function (Column $column) use ($profit) {
$column->row(Card::make('利润', function () use ($profit) {
$column->row(Card::make('交易费', function () use ($profit) {
$price = Admin::user()->deposit_used;
return <<<HTML
<div class="d-flex justify-content-between align-items-center mt-1" style="margin-bottom: 2px">
<h2 class="ml-1 font-large-1 text-primary">$profit</h2>
<h2 class="ml-1 font-large-1 text-primary">$price</h2>
</div>
HTML;
}));

Loading…
Cancel
Save