@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['thumbnail_image'], 'subtitle_info' => '', 'content_type' => 'tvshow', 'content_id' => $data['id'], 'video_type' => $data['video_upload_type'], 'content_video_type' => 'trailer', ])
@include('frontend::components.section.data_detail', ['data' => $data, 'subtitle_info' => ''])
@include('frontend::components.section.seasons', ['data' => $data['tvShowLinks']])
@if($data['is_clips_enabled']) @include('frontend::components.section.clips_trailers', ['clips' => $data['clips'] ?? []]) @endif
@include('frontend::components.section.castcrew', [ 'data' => $data['casts']->toArray(request()), 'title' => __('frontend.casts'), 'entertainment_id' => $data['id'], 'type' => 'actor', 'slug' => '', ])
@include('frontend::components.section.castcrew', [ 'data' => $data['directors']->toArray(request()), 'title' => __('frontend.directors'), 'entertainment_id' => $data['id'], 'type' => 'director', 'slug' => '', ])
@include('frontend::components.section.add_review', ['addreview' => 'Add Review'])
@if ($data['three_reviews'] != null)
@include('frontend::components.section.review_list', [ 'data' => $data['three_reviews']->toArray(request()), 'your_review' => $data['your_review'], 'title' => $data['name'], 'total_review' => count($data['reviews']), ])
@endif
{{-- @include('frontend::components.section.custom_ad_banner', [ 'placement' => 'tvshow_detail', 'content_id' => $data['id'] ?? '', 'content_type' => $data['type'] ?? '', 'category_id' => $data['category_id'] ?? '', ]) --}} @if ($data['more_items'] != null && count($data['more_items']) > 0)
@include('frontend::components.section.entertainment', [ 'data' => $data['more_items']->toArray(request()), 'title' => __('frontend.more_like_this'), 'type' => $data['type'], 'slug' => '', ])
@endif
@endsection