@extends($activeTemplate . 'layouts.master') @section('content')

@lang('Transactions')

@lang('Filters')

@forelse($transactions as $trx) @empty @endforelse
@lang('Trx') @lang('Transacted') @lang('Amount') @lang('Post Balance') @lang('Detail')
{{ $trx->trx }} {{ showDateTime($trx->created_at) }}
{{ diffForHumans($trx->created_at) }}
{{ $trx->trx_type }} {{ showAmount($trx->amount) }} {{ showAmount($trx->post_balance) }} {{ __($trx->details) }}
@include("Template::partials.empty")
@if ($transactions->hasPages()) @php echo paginateLinks($transactions); @endphp @endif
@endsection @push('style') @endpush @push('style-lib') @endpush @push('script-lib') @endpush @push('script') @endpush