From 020a98b5af7de6d06997e71c3b35fad1c12e0311 Mon Sep 17 00:00:00 2001 From: atmonshi Date: Mon, 24 Jul 2023 18:58:00 +0000 Subject: [PATCH] Fix styling --- src/CoreServiceProvider.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/CoreServiceProvider.php b/src/CoreServiceProvider.php index 74cb367..42a0364 100644 --- a/src/CoreServiceProvider.php +++ b/src/CoreServiceProvider.php @@ -22,7 +22,7 @@ public function packageBooted(): void }); FilamentAsset::register([ - Css::make('filament', __DIR__.'/../resources/dist/filament.css'), + Css::make('filament', __DIR__ . '/../resources/dist/filament.css'), ], 'lara-zeus'); } @@ -37,9 +37,9 @@ public function configurePackage(Package $package): void public static function setThemePath($path): void { - $viewPath = 'zeus::themes.'.config('zeus.theme').'.'.$path; - View::share($path.'Theme', $viewPath); - App::singleton($path.'Theme', function () use ($viewPath) { + $viewPath = 'zeus::themes.' . config('zeus.theme') . '.' . $path; + View::share($path . 'Theme', $viewPath); + App::singleton($path . 'Theme', function () use ($viewPath) { return $viewPath; }); }