summaryrefslogtreecommitdiff
path: root/routes/web.php
diff options
context:
space:
mode:
authordev2026-06-27 07:01:54 +0200
committerdev2026-06-27 07:01:54 +0200
commit7d1d61757a39e7f949e65e0d9f8b6555f5010b90 (patch)
tree52cd70504de34513069cbba334e954fc477a3229 /routes/web.php
parentb608ced142cd0527906b554e04376292f718f084 (diff)
downloadcurious-7d1d61757a39e7f949e65e0d9f8b6555f5010b90.tar.gz
feat: split movie synopsis into separate paragraphs
Synopsis now splits on \n\n into individual <p> tags instead of one big text blob. Already implemented, confirmed working with latest DB data.
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');