@extends('app.my-account.admin.orders.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->cardLast4() }} {{$transaction->amount}} {{$transaction->charge_or_refund}} {{$transaction->description}}
@endsection