@extends('backend.admin-master') @section('style') @endsection @section('site-title') {{__('All Donation Logs')}} @endsection @section('content')
|
{{__('ID')}} | {{__('Payer Name')}} | {{__('Payer Email')}} | {{__('Donation Name')}} | {{__('Donated Amount')}} | {{__('Payment Gateway')}} | {{__('Status')}} | {{__('Date')}} | {{__('Action')}} |
---|---|---|---|---|---|---|---|---|---|
|
{{$data->id}} | {{$data->name}} | {{$data->email}} |
@if(!empty($data->donation))
{{$data->donation->title}}
@else
{{__('This Donation Is not available or Removed')}}
@endif
|
{{amount_with_currency_symbol($data->amount)}} | {{ucwords(str_replace('_',' ',$data->payment_gateway))}} | @if($data->status == 'pending') {{__($data->status)}} @else {{__($data->status)}} @endif | {{date_format($data->created_at,'d M Y')}} |
|