@extends($activeTemplate . 'layouts.merchant') @section('content')
@forelse($payments as $payment) @empty @include('Template::partials.empty_message') @endforelse
@lang('User') @lang('Transaction ID') @lang('Date') @lang('Amount')| @lang('Charge') @lang('Post Balance') @lang('Action')
{{ __(@$payment->user->fullname) }}
{{ __(@$payment->user->mobile) }}
{{ __($payment->trx) }}
{{ showDateTime($payment->created_at) }}
{{ diffForHumans($payment->created_at) }}
{{ showAmount($payment->amount) }}
{{ showAmount($payment->charge) }}
{{ showAmount($payment->merchant_post_balance) }} @lang('Details')
@if ($payments->hasPages()) {{ paginateLinks($payments) }} @endif
@endsection