diff --git a/routes/web.php b/routes/web.php
index 252f63cf..8ff80b0e 100644
--- a/routes/web.php
+++ b/routes/web.php
@@ -970,6 +970,7 @@ Route::get('/final-duplicated-invoice-debug', function(){
| Owner Type |
Owner Id |
+ Order |
Reveiver |
Transaction type |
Count |
@@ -981,9 +982,12 @@ foreach ($duplicatedTransactions as $transaction) {
$duplicatedInvoice = DB::table('transactions')->whereIn('id', $transactionIds)->get();
+ $order_reference = $transaction->owner->owner->owner->reference;
+
echo '
';
echo '| ' . $transaction->owner_type . ' | ';
echo '' . $transaction->owner_id . ' | ';
+ echo '' . $order_reference . ' | ';
echo '' . $transaction->receiver . ' | ';
echo '' . $transaction->type . ' | ';
echo '' . count($transactionIds) . ' | ';