From 496df549f686410b92907bce5569614353d577b7 Mon Sep 17 00:00:00 2001 From: edmondlang Date: Fri, 27 Oct 2023 10:10:02 +0800 Subject: [PATCH] remove code --- routes/web.php | 8 -------- 1 file changed, 8 deletions(-) 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.'
'; - } -});