@extends('admin.layouts.app') @section('panel')
@forelse($transactions as $trx) @php $curSymbol = $trx->wallet_id ? @$trx->wallet->currency->symbol : gs('cur_text'); @endphp @empty @endforelse
@lang('User') @lang('TRX') @lang('Transacted') @lang('Amount') @lang('Post Balance') @lang('Details')
{{ $trx->user->fullname }}
@{{ $trx->user->username }}
{{ $trx->trx }} {{ showDateTime($trx->created_at) }}
{{ diffForHumans($trx->created_at) }}
{{ $trx->trx_type }} {{ showAmount($trx->amount, currencyFormat: false) }} {{ __($curSymbol) }} {{ showAmount($trx->post_balance, currencyFormat:false) }} {{ __($curSymbol) }} {{ __($trx->details) }}
{{ __($emptyMessage) }}
@if ($transactions->hasPages()) @endif
@endsection @push('script-lib') @endpush @push('style-lib') @endpush @push('script') @endpush