@extends($activeTemplate . 'layouts.master') @section('content')
@forelse($transactions as $trx) @empty @endforelse
@lang('Trx') @lang('Transacted') @lang('Amount') @lang('Post Balance') @lang('Wallet Type') @lang('Detail')
{{ $trx->trx }} {{ showDateTime($trx->created_at) }}
{{ diffForHumans($trx->created_at) }}
{{ $trx->trx_type }} {{ showAmount($trx->amount) }} {{ showAmount($trx->post_balance) }} @if ($trx->wallet_type == 'deposit_wallet') @lang('Deposit Wallet') @else @lang('Interest Wallet') @endif {{ __($trx->details) }}
{{ __($emptyMessage) }}
@if ($transactions->hasPages())
{{ paginateLinks($transactions) }}
@endif
@endsection @push('script') @endpush