From e3d7718c52bed492098b12a2c11937a9a2b8810e Mon Sep 17 00:00:00 2001 From: atmonshi Date: Sun, 24 Sep 2023 15:59:23 +0000 Subject: [PATCH] Fix styling --- config/zeus-sky.php | 2 +- routes/web.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config/zeus-sky.php b/config/zeus-sky.php index fa3ff75..708c938 100644 --- a/config/zeus-sky.php +++ b/config/zeus-sky.php @@ -15,7 +15,7 @@ 'FaqResource', 'LibraryResource', ], - 'parsers'=>[ + 'parsers' => [ \LaraZeus\Sky\Classes\BoltParser::class, ], 'recentPostsLimit' => 5, diff --git a/routes/web.php b/routes/web.php index 0741925..86a84cd 100644 --- a/routes/web.php +++ b/routes/web.php @@ -48,7 +48,7 @@ ->name('passwordConfirmation');*/ Route::get('/', Posts::class)->name('blogs'); - Route::get(config('zeus-sky.uriPrefix.post').'/{slug}', Post::class)->name('post'); - Route::get(config('zeus-sky.uriPrefix.page').'/{slug}', Page::class)->name('page'); + Route::get(config('zeus-sky.uriPrefix.post') . '/{slug}', Post::class)->name('post'); + Route::get(config('zeus-sky.uriPrefix.page') . '/{slug}', Page::class)->name('page'); Route::get('{type}/{slug}', Tags::class)->name('tags'); });