@extends('frontend::layouts.master', ['entertainment' => $entertainment])
@section('title')
{{ $data['data']['name'] ?? '' }}
@endsection
@section('content')
@php
$data = $data['data'];
@endphp
@include('frontend::components.section.thumbnail', [
'data' => $data['trailer_url'],
'type' => $data['trailer_url_type'],
'thumbnail_image' => $data['poster_image'],
'subtitle_info' => $data['subtitle_info'],
'dataAccess' => $data['access'],
'content_type' => 'video',
'content_id' => $data['id'],
'video_type' => $data['video_upload_type'],
'content_video_type' => 'video',
])
@include('frontend::components.section.video_data', [
'data' => $data,
'subtitle_info' => $data['subtitle_info'],
])
@if($data['is_clips_enabled'])
@include('frontend::components.section.clips_trailers', ['clips' => $data['clips'] ?? []])
@endif
@include('frontend::components.section.custom_ad_banner', [
'placement' => 'video_detail',
'content_id' => $data['id'] ?? '',
'content_type' => $data['type'] ?? '',
'category_id' => $data['category_id'] ?? '',
])
@include('frontend::components.section.video', [
'data' => $data['more_items']->toArray(request()),
'title' => __('frontend.more_like_this'),
])
{{ __('frontend.device_not_support') }}
@endsection
@push('scripts')
@endpush