26 lines
1.2 KiB
PHP
26 lines
1.2 KiB
PHP
<div id="widgets-total-profit" class="{{ $model->settings->width }}">
|
|
<div class="card bg-gradient-success card-stats">
|
|
@include('partials.widgets.stats_header')
|
|
|
|
<div class="card-body">
|
|
<div class="row">
|
|
<div class="col">
|
|
<h5 class="text-uppercase text-white mb-0">{{ $model->name }}</h5>
|
|
<span class="font-weight-bold text-white mb-0">@money($totals['current'], setting('default.currency'), true)</span>
|
|
</div>
|
|
|
|
<div class="col-auto">
|
|
<div class="icon icon-shape bg-white text-success rounded-circle shadow">
|
|
<i class="fa fa-heart"></i>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<p class="mt-3 mb-0 text-sm" title="{{ trans('dashboard.open_profit') }}: {{ $totals['open'] }}<br>{{ trans('dashboard.overdue_profit') }}: {{ $totals['overdue'] }}" data-toggle="tooltip" data-html="true">
|
|
<span class="text-white">{{ trans('general.upcoming') }}</span>
|
|
<span class="text-white font-weight-bold float-right">{{ $totals['open'] }} / {{ $totals['overdue'] }}</span>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|