@extends('back.layouts.master') @section('content')

تاریخچه کیف پول

@if($histories->count()) @foreach ($histories as $history) @php $is_deposit = $history->type == 'deposit'; @endphp @endforeach
ردیف کاربر مربوطه مبلغ (تومان) نوع تراکنش تاریخ وضعیت عملیات
{{ $loop->iteration }} {{ $history->wallet->user->fullname }} {{ number_format($history->amount) }} @if ($is_deposit) افزایش اعتبار
@else کاهش اعتبار
@endif
{{ jdate($history->created_at) }} @if($history->status == 'success')
موفق
@else
ناموفق
@endif
@else

چیزی برای نمایش وجود ندارد!

@endif {{ $histories->links() }}
@endsection @push('scripts') @endpush