@extends($activeTemplate . 'layouts.master') @section('content')
@if (!blank($transactions))
@forelse($transactions as $trx)

  • @lang('Post Balance') {{ showAmount($trx->post_balance) }}
  • @lang('Details') {{ __($trx->details) }}
@endforeach
@if ($transactions->hasPages())
{{ paginateLinks($transactions) }}
@endif
@else @include($activeTemplate . 'partials.empty', ['message' => 'Transaction not found!']) @endif
@endsection @push('style-lib') @endpush @push('script-lib') @endpush @push('script') @endpush @push('style') @endpush