cineflex/resources/views/main/movies/index.blade.php

22 lines
674 B
PHP
Raw Normal View History

@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}}">
<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