2022-12-08 09:30:07 +01:00
|
|
|
@extends('main.layout')
|
2022-11-23 09:32:34 +01:00
|
|
|
|
2023-01-01 20:13:11 +01:00
|
|
|
@push('head')
|
2023-02-03 09:05:29 +01:00
|
|
|
<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/>
|
2023-02-03 09:05:29 +01:00
|
|
|
<x-movie-cards :movies="$movies"/>
|
2022-11-23 09:32:34 +01:00
|
|
|
</section>
|
|
|
|
|
|
|
|
@endsection
|