name('satellite.blog'); Route::get('/blog/{slug}', Post::class)->name('satellite.post'); Route::get('/help', Help::class)->name('satellite.help'); Route::get('/help/{slug}', HelpArticle::class)->name('satellite.help.article'); /* |-------------------------------------------------------------------------- | Content Preview Routes |-------------------------------------------------------------------------- | | Preview draft/unpublished content with time-limited tokens. | */ Route::get('/content/preview/{item}', Preview::class)->name('content.preview');