Search
This commit is contained in:
@@ -8,6 +8,9 @@ use Inertia\Inertia;
|
||||
// Auth protected routes
|
||||
Route::controller(ComicController::class)->middleware('auth')->name('comics.')->group(function () {
|
||||
Route::get('/', 'index')->name('index');
|
||||
Route::get('/author/{author}', 'author')->name('author');
|
||||
Route::get('/search/{search}', 'search')->name('search');
|
||||
|
||||
Route::get('/comic/{pathword}/{uuid}', 'read')->name('read');
|
||||
Route::get('/comic/{pathword}', 'chapters')->name('chapters');
|
||||
Route::get('/tags', 'tags')->name('tags');
|
||||
|
||||
Reference in New Issue
Block a user