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

Financial Transactions

@foreach($transactions as $transaction) @endforeach
Date Order Payment Method Amount Charge or Refund Description
{{$transaction->created_at}} {{ $transaction->storeOrder->iid }} {{ $transaction->paymentMethod->card_type }} ending in {{ $transaction->paymentMethod->card_last_four }} ${{$transaction->amount}} {{$transaction->charge_or_refund}} {{$transaction->description}}
@endsection