18 lines
308 B
PHP
18 lines
308 B
PHP
@extends('main.layout')
|
|
|
|
@push('head')
|
|
<link rel="stylesheet" href="{{asset('css/movies.css')}}">
|
|
@endpush
|
|
|
|
@section('content')
|
|
|
|
<section>
|
|
<h1>Now playing:</h1>
|
|
<hr/>
|
|
<div id="movies">
|
|
@foreach($movies as $showing)
|
|
|
|
@endforeach
|
|
</section>
|
|
|
|
@endsection
|