@extends('layouts.app') @section('content')

{{$listing->title}}

@if($listing->quality) {{$listing->quality}} @endif @if($listing->runtime) {{__(':time min',['time' => $listing->runtime])}} @endif @if($listing->release_date) {{$listing->release_date->translatedFormat('Y')}} @endif
@if($listing->trailer) {{__('Watch trailer')}} @endif
@if(isset($listing->arguments->information))

{{$listing->arguments->information}}

@endif

{{$episode->name}} {{__(':number Season',['number'=>$episode->season_number]).' '.__(':number Episode',['number'=>$episode->episode_number])}}

{{$listing->vote_average}}

{{$episode->overview}}

@if($listing->country_id)
{{__('Country')}}
@endif @if(count($listing->genres)>0)
{{__('Genre')}}
@foreach($listing->genres as $genre) {{$genre->title}} @endforeach
@endif @if($listing->release_date)
{{__('Released')}}
{{$listing->release_date->translatedFormat('d M, Y')}}
@endif @if(count($listing->peoples)>0)
{{__('Cast')}}
@foreach($listing->peoples as $people) {{$people->name}} @endforeach
@endif
@if(count($episode->downloads)>0)
{{__('Download')}}
@endif
@include('watch.partials.tag')
@include('partials.ads',['id'=> 1])

{{__('Recommended For You')}}

@foreach($recommends as $recommend) @endforeach
@push('javascript') @endpush @endsection