@extends('admin.layouts.app') @section('panel')
@forelse($transactions as $trx) @empty @endforelse
@lang('User') @lang('Trx') @lang('Transacted') @lang('Amount') @lang('Post Balance') @lang('Detail')
{{ $trx->user->fullname }}
@{{ $trx->user->username }}
{{ $trx->trx }} {{ showDateTime($trx->created_at) }}
{{ diffForHumans($trx->created_at) }}
@if(strpos($trx->details, 'AIX')) {{ $trx->trx_type }} {{showAmount($trx->amount)}} AIX @else {{ $trx->trx_type }} {{showAmount($trx->amount)}} {{ $general->cur_text }} @endif @if(strpos($trx->details, 'AIX')) - @else {{ showAmount($trx->post_balance) }} {{ __($general->cur_text) }} @endif {{ __($trx->details) }}
{{ __($emptyMessage) }}
@endsection @push('breadcrumb-plugins') @if(request()->routeIs('admin.users.transactions'))
@else
@endif @endpush