summaryrefslogtreecommitdiff
path: root/resources/views/cinema_show.blade.php
AgeCommit message (Collapse)AuthorFilesLines
2026-06-27style: move HN story date/meta to separate muted line below linkDeveloper1-8/+10
2026-06-27fix: truncate HN comment text to 80 chars with ellipsisDeveloper1-1/+1
2026-06-27.Developer1-1/+1
2026-06-27fix: restore actors and HN sections in cinema_show viewDeveloper1-0/+7
Previous edit accidentally merged the HN stories block inside the actors section. Properly separated the two with correct closing tags.
2026-06-27fix: show comment text for HN comment entries on movie pageDeveloper1-8/+15
Comments now display as 'Comment: <beginning of text>' with single-line truncation via hn-comment CSS class. Story-type entries still show title.
2026-06-27feat: add Hacker News stories section to movie detail pageDeveloper1-0/+22
Links to every HN story referencing this movie, ordered by most recent. Each entry shows date, score (if > 0), and descendants (if > 0).
2026-06-27fix: handle empty poster_url strings as missing posterDeveloper1-1/+1
poster_url can be empty string instead of null, so use empty() instead of is_null() in cinema, cinema_show, and genre_movies views.
2026-06-27feat: add /genres page listing all genres with movie countsDeveloper1-1/+1
- Add CinemaController::genres() and ::genre($name) methods - /genres shows all genres with movie counts (like /popular/topics) - /genres/{genre} shows movies filtered by that genre with pagination - Genre badges on cinema_show page now link to /genres/{genre} - Add Genres link to navbar next to Cinema
2026-06-27fix: use separate count query in CinemaController::search()Developer1-1/+7
simplePaginate returns SimplePaginator which lacks total(). Count results separately following the pattern used in IndexController.
2026-06-27fix: rename cinema-show.blade.php to cinema_show.blade.phpDeveloper1-0/+150
Laravel resolves view names with underscores (cinema_show), not hyphens.