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

16 lines
267 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/main/movies.css')}}">
2023-01-01 20:13:11 +01:00
@endpush
2022-11-23 09:32:34 +01:00
@section('content')
<section>
<h1>Now playing:</h1>
<hr/>
<x-movie-cards :movies="$movies"/>
2022-11-23 09:32:34 +01:00
</section>
@endsection