15 lines
267 B
PHP
15 lines
267 B
PHP
@extends('main.layout')
|
|
|
|
@push('head')
|
|
<link rel="stylesheet" href="{{asset('css/main/movies.css')}}">
|
|
@endpush
|
|
|
|
@section('content')
|
|
|
|
<section>
|
|
<h1>Now playing:</h1>
|
|
<hr/>
|
|
<x-movie-cards :movies="$movies"/>
|
|
</section>
|
|
|
|
@endsection
|