From cc23c4dd886c0833903a8e35053f747cb5c9079f Mon Sep 17 00:00:00 2001 From: Caen De Silva Date: Mon, 13 Nov 2023 15:24:15 +0100 Subject: [PATCH] Format array --- .../realtime-compiler/src/Http/DashboardController.php | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/packages/realtime-compiler/src/Http/DashboardController.php b/packages/realtime-compiler/src/Http/DashboardController.php index cdc889843c4..65288674749 100644 --- a/packages/realtime-compiler/src/Http/DashboardController.php +++ b/packages/realtime-compiler/src/Http/DashboardController.php @@ -88,9 +88,12 @@ public function handle(): Response protected function show(): string { - return AnonymousViewCompiler::handle(__DIR__.'/../../resources/dashboard.blade.php', - ['title' => config('hyde.name').' - Dashboard', 'dashboard' => $this, 'request' => $this->request, 'csrfToken' => $this->generateCSRFToken()], - ); + return AnonymousViewCompiler::handle(__DIR__.'/../../resources/dashboard.blade.php', [ + 'title' => config('hyde.name').' - Dashboard', + 'dashboard' => $this, + 'request' => $this->request, + 'csrfToken' => $this->generateCSRFToken() + ]); } protected function handlePostRequest(): JsonResponse