@extends('frontend.frontend-page-master') @section('site-title') {{get_static_option('donor_page_'.$user_select_lang_slug.'_name')}} @endsection @section('page-title') {{get_static_option('donor_page_'.$user_select_lang_slug.'_name')}} @endsection @section('page-meta-data') @endsection @section('breadcrumb')
  • {{get_static_option('donor_page_'.$user_select_lang_slug.'_name')}}
  • @endsection @section('content')
    @if(count($all_donation_log) > 0) @foreach($all_donation_log as $data)

    @if($data->donation_type == 'on') {{__('Anonymous')}} @else {{$data->name}} @endif

    {{amount_with_currency_symbol($data->amount)}} {{date_format($data->created_at,'d M y h:m:s')}}
    @endforeach @else
    {{__('No Donor Found')}}
    @endif
    @endsection