summaryrefslogtreecommitdiff
path: root/routes/web.php
diff options
context:
space:
mode:
authorhorus2026-06-27 05:40:45 +0200
committerhorus2026-06-27 05:40:45 +0200
commit7ff83424592cd5a3c58fe2e6d7e67aeef5144caf (patch)
treedafafa6f83c80c8bb2ee3c0b58961197a3f2a73c /routes/web.php
parentb608ced142cd0527906b554e04376292f718f084 (diff)
downloadcurious-7ff83424592cd5a3c58fe2e6d7e67aeef5144caf.tar.gz
merge
Diffstat (limited to 'routes/web.php')
-rw-r--r--routes/web.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/routes/web.php b/routes/web.php
index 8deddbb..a2132c1 100644
--- a/routes/web.php
+++ b/routes/web.php
@@ -32,4 +32,9 @@ Route::get('/feed/search', 'FeedController@search')->name('feed_search');
#Auth::routes();
+Route::get('/cinema', 'CinemaController@cinema')->name('cinema.index');
+Route::get('/cinema/movie/{imdb_id}', 'CinemaController@show')->name('cinema.show');
+Route::get('/cinema/search', 'CinemaController@search')->name('cinema.search');
+Route::get('/genres', 'CinemaController@genres')->name('cinema.genres');
+Route::get('/genres/{genre}', 'CinemaController@genre')->name('cinema.genre')->where('genre', '(.+)');
Route::get('/about', 'IndexController@about')->name('about');