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

19 lines
308 B
PHP
Raw Normal View History

@extends('main.layout')
2022-11-23 09:32:34 +01:00
2023-01-01 20:13:11 +01:00
@push('head')
<link rel="stylesheet" href="{{asset('css/movies.css')}}">
@endpush
2022-11-23 09:32:34 +01:00
@section('content')
<section>
<h1>Now playing:</h1>
<hr/>
<div id="movies">
2023-01-01 20:13:11 +01:00
@foreach($movies as $showing)
2022-11-23 09:32:34 +01:00
@endforeach
</section>
@endsection