CloudComputing

{{@$string}}

@foreach($payments as $payment) @endforeach
S.No Name Email Country Phone Number Registration Date Payment Date Refund Date Status Payment Amount (USD / INR)
{{$loop->iteration}} {{$payment->user->name}} {{$payment->user->email}} {{@$payment->user->country->name}} {{@$payment->user->mobile_number}} {{Carbon\Carbon::parse(@$payment->user->created_at)->format("Y-m-d")}} @if($payment->payment_status==1 || $payment->payment_status==4) {{Carbon\Carbon::parse($payment->updated_at)->format("Y-m-d")}} @else - @endif @if($payment->refund_date!=null) {{$payment->refund_date ? Carbon\Carbon::parse($payment->refund_date)->format("Y-m-d") :null}}
@else - @endif
@if($payment->payment_status==1) Payment Completed @elseif($payment->payment_status!=4) Payment Attempted @elseif($payment->payment_status==4) Payment Refunded @endif @if($payment->payment_status==1 || $payment->payment_status==4) USD : {{$payment->amount}} @else - @endif