@if (!$histories->isEmpty())
@foreach ($histories as $item)
@php
$type = App\Models\Commission::TYPE[$item->type] ?? '';
$color = 'danger';
$icon = '
';
$word = 'از';
if ($item->type == 'increase') {
$color = 'success';
$icon = '
';
$word = 'به';
}
@endphp
{!! $icon !!}
پورسانت
{{ $user->full_name }}
به مبلغ
{{ number_format($item->amount) }}
تومان
{{ $type }}
یافت
در تاریخ
{{$item->from}}
@endforeach
@else
تاریخچه موجود نمی باشد!
@endif