@extends('includes.layouts')
@section('content')
@if($banner_movies->count())
@foreach($banner_movies as $k => $banner_movie)
{{ $banner_movie->title }}
@if($banner_movie->imdb_rating)
{{ $banner_movie->imdb_rating }}/10
@endif
{{ $banner_movie->rated }}
@if($banner_movie->duration)
{{ $banner_movie->duration }}
@endif
{{ $banner_movie->release_year }}
{{ $banner_movie->description }}
@endforeach
@endif
@if($tendency_movies->count())
@foreach($tendency_movies as $tendency_movie)
@if($tendency_movie->image)
-
{{ $tendency_movie->duration }}
@endif
@endforeach
@endif
@if($new_movies->count())
@foreach($new_movies as $new_movie)
@if($new_movie->image)
-
{{ $new_movie->duration }}
@endif
@endforeach
@endif
@endsection