2022-12-08 09:30:07 +01:00
|
|
|
@extends('main.layout')
|
2022-11-23 09:32:34 +01:00
|
|
|
|
|
|
|
@section('content')
|
|
|
|
|
|
|
|
<section>
|
|
|
|
<h1>Now playing:</h1>
|
|
|
|
<hr/>
|
|
|
|
<div id="movies">
|
|
|
|
@foreach($showings as $showing)
|
|
|
|
<a href="/movie/{{$showing->movie->movie_id}}">
|
2022-12-08 09:30:07 +01:00
|
|
|
<img src="{{$showing->movie->movie_image}}" alt="{{$showing->movie->movie_name}} Poster"
|
|
|
|
width="200px">
|
2022-11-23 09:32:34 +01:00
|
|
|
<div class="details">
|
|
|
|
<span>{{$showing->movie->movie_name}}</span><br/>
|
|
|
|
<span>{{$showing->movie->movie_length}} min</span>
|
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
@endforeach
|
|
|
|
</section>
|
|
|
|
|
|
|
|
@endsection
|