From 7d1d61757a39e7f949e65e0d9f8b6555f5010b90 Mon Sep 17 00:00:00 2001 From: dev Date: Sat, 27 Jun 2026 07:01:54 +0200 Subject: feat: split movie synopsis into separate paragraphs Synopsis now splits on \n\n into individual
tags instead of one big text blob. Already implemented, confirmed working with latest DB data. --- routes/web.php | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'routes') 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'); -- cgit v1.2.3