remove code

This commit is contained in:
edmondlang
2023-10-27 10:10:02 +08:00
parent 97eaefa45a
commit 496df549f6
-8
View File
@@ -1225,11 +1225,3 @@ Route::get('/wallets/active', function(){
} }
echo '</table>'; echo '</table>';
}); });
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 '<a href="'.route('order.v2.show', $orderMarking).'" target="_blank">'.$orderMarking.'</a><br>';
}
});