@extends('backend.admin-master') @section('site-title') {{__('Donation Report')}} @endsection @section('content')
@include('backend.partials.message') @if(!empty($error_msg))
{{$error_msg}}
@endif

{{__("Donation Report")}}

@if(!empty($order_data) && count($order_data) > 0) @endif
@if(!empty($order_data))
@if(count($order_data) > 0)
@foreach($order_data as $data) @endforeach
{{__('Order ID')}} {{__('Billing Name')}} {{__('Billing Email')}} {{__('Amount')}} {{__('Payment Gateway')}} {{__('Payment Status')}} {{__('Transaction ID')}} {{__('Date')}}
{{$data->id}} {{$data->name}} {{$data->email}} {{site_currency_symbol().$data->amount}} {{ucwords(str_replace('_',' ',$data->payment_gateway))}} @if($data->status == 'pending') {{str_replace('-',' ',$data->status)}} @else {{str_replace('-',' ',$data->status)}} @endif {{$data->transaction_id}} {{date_format($data->created_at,'d M Y')}}
{!! $order_data->links() !!}
@else
{{__('No Item Found')}}
@endif
@endif
@endsection @section('script') @endsection