diff --git a/resources/views/components/table/actions.blade.php b/resources/views/components/table/actions.blade.php
index 7d5a2f5a3..03f6ccb90 100644
--- a/resources/views/components/table/actions.blade.php
+++ b/resources/views/components/table/actions.blade.php
@@ -42,11 +42,13 @@
@php
$text = $action['text'] ?? null;
$title = $action['title'] ?? null;
+ $route = $action['route'] ?? null;
+ $url = $action['url'] ?? null;
$modelId = ! empty($action['model-id']) ? $action['model-id'] : 'id';
$modelName = ! empty($action['model-name']) ? $action['model-name'] : 'name';
@endphp
-
+
@break
@default