diff --git a/routes/web.php b/routes/web.php index 6ebb533..7dd75f6 100644 --- a/routes/web.php +++ b/routes/web.php @@ -35,6 +35,6 @@ ->prefix(config('zeus-sky.library_uri_prefix')) ->group(function () { Route::get('/', Library::class)->name('library'); - Route::get('/{slug}', LibraryItem::class)->name('library-item'); + Route::get('/{slug}', LibraryItem::class)->name('library.item'); }); }