@extends('frontend::layouts.master') @section('content')
@if( $continue_watch===true) @include('frontend::components.section.thumbnail', ['data' => $data['video_url_input'] ,'type'=>$data['video_upload_type'],'thumbnail_image'=>$data['thumbnail_image'],'watched_time'=>$data['watched_time']]) @else @include('frontend::components.section.thumbnail', ['data' => $data['trailer_url'] ,'type'=>$data['trailer_url_type'],'thumbnail_image'=>$data['thumbnail_image'],'watched_time'=>0]) @endif
@include('frontend::components.section.data_detail', ['data' => $data])
@if(count( $data['casts']) >0)
@include('frontend::components.section.castcrew', ['data' => $data['casts']->toArray(request()), 'title'=> __('frontend.casts'),'entertainment_id' =>$data['id'], 'type'=>'actor', 'slug'=>''])
@endif @if(count( $data['directors']) >0)
@include('frontend::components.section.castcrew', ['data' => $data['directors']->toArray(request()),'title'=> __('frontend.directors'),'entertainment_id' =>$data['id'],'type'=>'director', 'slug'=>''])
@endif
@include('frontend::components.section.add_review', ['addreview' => 'Add Review'])
@include('frontend::components.section.review_list', ['data' => $data['three_reviews'], 'your_review'=> $data['your_review'], 'title'=> $data['name'], 'total_review'=>count($data['reviews'])])
@if(count($data['more_items']) !=0 )
@include('frontend::components.section.entertainment', ['data' => $data['more_items'], 'title'=>__('frontend.more_like_this'), 'type'=>$data['type'], 'slug'=>''])
@endif
@endsection