From 066a187cb946d76e0679bf48c03b537bd614e86a 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..44b58f2e2ad 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