@extends('frontend.user.dashboard.user-master') @section('section') @if(!empty(get_static_option('donations_module_status'))) @if(count($donation) > 0)
@foreach($donation as $data) @endforeach
{{get_static_option('donation_page_'.$user_select_lang_slug.'_name')}} {{__('Info')}} {{__('Payment Status')}}
@if(!empty($data->donation)) {{$data->donation->title}} @else
{{__('This item is not available or removed')}}
@endif
{{get_static_option('donation_page_'.$user_select_lang_slug.'_name')}} {{__('ID:')}} #{{$data->id}} {{__('Amount:')}} {{amount_with_currency_symbol($data->amount)}} {{__('Payment Gateway:')}} {{str_replace('_',' ',__($data->payment_gateway))}} {{__('Date:')}} {{date_format($data->created_at,'d M Y')}} @if(!empty($data->donation) && $data->status == 'complete')
@csrf
@endif @if(!empty($data->manual_payment_attachment)) {{__('View Bank Attachment')}} @endif
@if($data->status == 'pending') {{__($data->status)}} @if( $data->payment_gateway != 'manual_payment')
@csrf
@endif
@csrf
@elseif($data->status == 'cancel') {{__($data->status)}} @else {{__($data->status)}} @endif
{{ $donation->links() }}
@else
{{__('No Donation Found')}}
@endif @endif @endsection