@extends($activeTemplate . 'layouts.master') @section('content')
@forelse($transactions as $trx) @empty @endforelse
@lang('TRX No.') @lang('Time') @lang('Amount') @lang('Post Balance') @lang('Details')
#{{ $trx->trx }} {{ showDateTime($trx->created_at) }} {{ $trx->trx_type }} {{ showAmount($trx->amount)}} {{ showAmount($trx->post_balance) }} {{ $trx->details }}
{{ __($emptyMessage) }}
@if ($transactions->hasPages()) @endif
@endsection