diff options
| author | Developer | 2026-06-27 04:23:04 +0200 |
|---|---|---|
| committer | Developer | 2026-06-27 04:23:04 +0200 |
| commit | feba727ed0b4a5666edf29f6af069a6f2e81cbb3 (patch) | |
| tree | d5815b94af6e6c0c4ac99a78d68516672645a157 | |
| parent | 81cd80aea8bfdec1c68ae5082fced1b0a3f5e51d (diff) | |
| download | curious-feba727ed0b4a5666edf29f6af069a6f2e81cbb3.tar.gz | |
fix: restore actors and HN sections in cinema_show view
Previous edit accidentally merged the HN stories block inside the actors
section. Properly separated the two with correct closing tags.
| -rw-r--r-- | resources/views/cinema_show.blade.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/resources/views/cinema_show.blade.php b/resources/views/cinema_show.blade.php index bac06e2..e2b8bcf 100644 --- a/resources/views/cinema_show.blade.php +++ b/resources/views/cinema_show.blade.php @@ -134,6 +134,13 @@ @foreach( $actors as $person ) <div>{{ $person->name }}</div> @endforeach + </div> + </div> + @endif + + @if ( ! empty($hnStories) ) + <div class="mt-3"> + <h4>Hacker News</h4> <ul class="list-unstyled"> @foreach($hnStories as $story) <li> |
