Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
atmonshi authored and github-actions[bot] committed Sep 24, 2023
1 parent 0e4e9c1 commit e3d7718
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion config/zeus-sky.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
'FaqResource',
'LibraryResource',
],
'parsers'=>[
'parsers' => [
\LaraZeus\Sky\Classes\BoltParser::class,
],
'recentPostsLimit' => 5,
Expand Down
4 changes: 2 additions & 2 deletions routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -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');
});

0 comments on commit e3d7718

Please sign in to comment.