@extends('layouts.admin', ['title' => 'کیف پول کاربران']) @section('content')

کیف پول {{ isset($uid) ? $user->first_name . ' ' . $user->lasst_name . ' ' . $user->mobile : 'کاربران' }} @if(isset($uid)) اعتبار دستی لاگ @endif بازگشت

مانده کیف پول تمام کاربران
@if(count($data)==0) @else @foreach ($data as $item) @endforeach
شماره‌ پیگیری تاریخ کاربر مبلغ نوع وضعیت توضیحات
TR-{{ $item->id }} {{ GetShamsiDate($item->created_at) }} {{ $item->User?->first_name . ' ' . $item->User?->last_name . ' (' . $item->User?->mobile . ')' }} {{ $item->amount }} {{ $item->Type?->title }} {{ $item->Status?->title }} {{ $item->details }} مشاهده
{!! $data->render(); !!}
@endif @stop