diff --git a/routes/web.php b/routes/web.php
index ab9f5f3e..55cd1302 100644
--- a/routes/web.php
+++ b/routes/web.php
@@ -1225,11 +1225,3 @@ Route::get('/wallets/active', function(){
}
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.'
';
- }
-});