@extends('backend.deposit.index')
@section('title', __('Deposit History'))
@section('deposit_header')
| {{ __('User | TXN ID') }} | {{ __('Amount | Fee') }} | {{ __('Description | Provider') }} | {{ __('Status') }} | {{ __('Time') }} |
|---|---|---|---|---|
|
@isset($depositHistory->user->avatar)
{{ $avatarData['initials'] }}
@endisset
{{ $depositHistory->user->name }}
{{ strtoupper($depositHistory->trx_id) }}
|
{{-- Amount Information --}}
{{ $amountSign . $depositHistory->amount . ' ' . $depositHistory->currency }}
{{ __('Fee: :fee', ['fee' => getSymbol($depositHistory->currency) . $depositHistory->fee]) }}
|
{{-- Description & Provider --}}
{{ $depositHistory->description }}
{{ $depositHistory->provider .' - '.$depositHistory->processing_type->label() }}
|
{{-- Status --}}
{{ $depositHistory->status->label() }} | {{-- Transaction Time --}}
{{ $depositHistory->created_at->format('Y-m-d H:i') }}
{{ $depositHistory->created_at->diffForHumans() }}
|
|
|
||||