@extends($activeTemplate . 'layouts.master') @section('content')
@if ($transactions->count()) @foreach ($transactions as $trx) @endforeach
@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) }}
@else @endif
{{ paginateLinks($transactions) }}
@endsection @section('pageTitleIcon') image @endsection @push('style') @endpush