From 93f3f4429271b2879e38e0b3e6952dc0052aaabf Mon Sep 17 00:00:00 2001 From: Mahavishnu P <52984889+mahavishnup@users.noreply.github.com> Date: Tue, 23 May 2023 05:23:30 +0530 Subject: [PATCH] telescope and horizon url fix's --- src/FilamentDebugger.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/FilamentDebugger.php b/src/FilamentDebugger.php index 13b46cc..5c5d3f0 100755 --- a/src/FilamentDebugger.php +++ b/src/FilamentDebugger.php @@ -35,7 +35,7 @@ public static function getTelescopeUrl(): NavigationItem ->label('Telescope') ->sort(1) ->url( - '/'.config('telescope.domain').config('telescope.path') + config('telescope.domain').'/'.config('telescope.path') ) ->openUrlInNewTab(); } @@ -48,7 +48,7 @@ public static function getHorizonUrl(): NavigationItem ->label('Horizon') ->sort(2) ->url( - '/'.config('horizon.domain').config('horizon.path') + config('horizon.domain').'/'.config('horizon.path') ) ->openUrlInNewTab(); }