@extends('app.my-account.admin.users.single') @section('details')

Financial Transactions

@foreach($transactions as $transaction) @endforeach
Date Order Payment Method Merchant Amount Charge or Refund Description Is stripe payment confirmed?
{{$transaction->created_at}} {{ $transaction->storeOrder->iid }} {{ $transaction->paymentMethod->card_type }} ending in {{ $transaction->paymentMethod->card_last_four }} {{$transaction->paymentMethod->authorize_customer_profile_id? 'Authorize.net': 'Stripe'}} ${{$transaction->amount}} {{$transaction->charge_or_refund}} {{$transaction->description}} @if($transaction->paymentMethod->stripe_id) @if($transaction->is_stripe_confirmation_done) Yes @else No @endif @else - @endif
@endsection