From d19e1cd534bff60a4df32c95152a2fc029de32a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Burak=20=C3=87ak=C4=B1rel?= Date: Thu, 29 Apr 2021 11:29:40 +0300 Subject: [PATCH] Add company_id into suggestion module's url --- app/Http/ViewComposers/Suggestions.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/Http/ViewComposers/Suggestions.php b/app/Http/ViewComposers/Suggestions.php index e8a9c21df..c90ff2489 100644 --- a/app/Http/ViewComposers/Suggestions.php +++ b/app/Http/ViewComposers/Suggestions.php @@ -44,6 +44,8 @@ class Suggestions continue; } + $s_module->action_url = company_id() . '/' . $s_module->action_url; + $modules[] = $s_module; }