@extends($activeTemplate . 'layouts.master') @section('content')
@if (count($transactions) > 0)
@forelse($transactions as $trx) @empty @endforelse
@lang('Trx') @lang('Amount') @lang('Post Balance') @lang('Action')
{{ $trx->trx }} {{ showAmount($trx->amount) }} {{ showAmount($trx->post_balance) }}
{{ __($emptyMessage) }}
@if ($transactions->hasPages()) {{ $transactions->links() }} @endif @else @include($activeTemplate . 'partials.empty', ['message' => 'Transactions not found!']) @endif
@endsection @push('breadcrumb')
@endpush @push('script') @endpush