@extends($activeTemplate . 'layouts.merchant') @section('content')
@forelse($transactions as $trx) @empty @include('Template::partials.empty_message') @endforelse
@lang('Trx') @lang('Transacted') @lang('Amount') @lang('Charge') @lang('Post Balance') | @lang('Detail')
{{ $trx->trx }}
{{ showDateTime($trx->created_at) }}
{{ diffForHumans($trx->created_at) }}
{{ $trx->trx_type }} {{ showAmount($trx->amount) }} {{ showAmount($trx->charge) }}
{{ showAmount($trx->post_balance) }} {{ __($trx->details) }}
@if ($transactions->hasPages()) @endif
@endsection @push('style') @endpush