diff --git a/routes/web.php b/routes/web.php
index 79e37341..a677560f 100644
--- a/routes/web.php
+++ b/routes/web.php
@@ -1222,4 +1222,12 @@ Route::get('/wallets/active', function(){
echo '';
}
echo '';
+});
+
+Route::get('/accident-approve-invoice', function(){
+ $invoices = Transaction::where('type', TransactionType::SHIPPING_INVOICE)->whereDate('updated_at', '2023-10-12')->get();
+ foreach ($invoices as $invoice) {
+ $orderMarking = $invoice->owner->owner->reference;
+ echo ''.$orderMarking.'
';
+ }
});
\ No newline at end of file