@extends('dashboard.admin.layouts.master') @section('content')

{{ $title }}

{{ $title }}

@forelse ($transactions as $key => $transaction) @empty @endforelse
# Invoice Transaction ID Payment Method Amount Amount In Base Currency Amount In Real Currency Name
{{ $key + 1 }} #{{ $transaction->order->invoice_id }} {{ $transaction->transaction_id }} {{ $transaction->payment_method }} {{ formatAmount($transaction->amount, $settings) }} {{ formatAmount($transaction->amount_real_currency, $settings) }} {{ $transaction->amount_real_currency_name }}
@endsection