{{ $donation->transaction_id }} |
{{ strlen($donation->title > 20) ? mb_substr($donation->title, 0, 20, 'UTF-8') . '...' : $donation->title }}
|
{{ $userBs->base_currency_symbol_position == 'left' ? $userBs->base_currency_symbol : '' }}
{{ $donation->amount }}
{{ $userBs->base_currency_symbol_position == 'right' ? $userBs->base_currency_symbol : '' }}
|
{{ $donation->payment_method }} |
@if ($donation->status == 'completed')
{{ $keywords['Completed'] ?? __('Completed') }}
@elseif ($donation->status == 'pending')
{{ $keywords['Pending'] ?? __('Pending') }}
@elseif ($donation->status == 'rejected')
{{ $keywords['Rejected'] ?? __('Rejected') }}
@endif
|
@endforeach
@else
{{ $keywords['NO_DONATION_FOUND'] ?? __('No Donation Found') }}
|
@endif