fix route

This commit is contained in:
ludo
2024-03-11 18:38:23 +01:00
parent e4e2126ada
commit 296dc4fde2
9 changed files with 232 additions and 241 deletions

View File

@@ -18,6 +18,9 @@ class OrderController extends Controller
{
public function index(CustomerOrdersDataTable $dataTable)
{
if (Customers::isNotConnected()) {
abort(403);
}
return $dataTable->render('Shop.Orders.partials.list');
}