@extends('admin.layouts.app') @section('panel')
@include('admin.donation.widget') @lang('User') @lang('Donation for') @lang('Trx') | @lang('Time') @lang('Amount') | @lang('Post Balance') @lang('Identity') | @lang('Reference') @forelse($transactions as $trx) {{ $trx->donationFor->name }}
{{ $trx->trx }} {{ showDateTime($trx->created_at) }}
{{ showAmount($trx->amount) }} {{ showAmount($trx->post_balance) }}
@if ($trx->hide_identity == Status::YES) @lang('Hide Identity') @else @lang('Visible Identity') @endif {{ $trx->reference ?? __('N/A') }}
@empty @endforelse
@if ($transactions->hasPages()) {{ paginateLinks($transactions) }} @endif
@endsection