@extends('layouts.layout') @section('schema') @foreach($meta['schema'] as $value) @endforeach @endsection @section('head') @endsection {{-- @section('head') --}} {{-- {!! getMovieMarkupData($show) !!} --}} {{-- @endsection --}} @section('app')
{{ str($show['title'])->apa() }} ({{ $show['year'] }})

{{ str($show['title'])->apa() }}

@if($show['tagline'])

"{{ $show['tagline'] }}"

@endif

Watch {{ str($show['title'])->apa() }}

Type : TV Show Seasons: {{ count($show['seasons']) }}
{{$show['vote_average']}} {{$show['vote_count']}} views
  • Share :
  • @if (isset($show['share']) && is_array($show['share'])) @foreach ($show['share'] as $share)
  • @endforeach @endif

Details

{{ $show['overview'] }}

  • Genres:  @foreach($show['genres'] as $genre) {{ $genre['name'] }}@if(!$loop->last), @endif @endforeach
  • Language:  @foreach($show['languages'] as $language) {{ $language }}@if(!$loop->last), @endif @endforeach

Cast & Crew

  • Cast: @foreach($show['cast'] as $actor) {{ $actor['name'] }}@if(!$loop->last), @endif @endforeach
  • Creator: @foreach($show['crew']['creators'] as $actor) {{ $actor['name'] }}@if(!$loop->last), @endif @endforeach
  • @unless (empty($show['crew']['producers']))
  • Producer: @foreach($show['crew']['producers'] as $actor) {{ $actor['name'] }}@if(!$loop->last), @endif @endforeach
  • @endunless
    @foreach ($show['seasons'] as $currentSeason)
  • image
    {{ $currentSeason['name'] }}
    Play Now
  • @endforeach

Similar Titles

@foreach ($show['similar'] as $item) @include('components.title_card', ['data_text' => ucfirst($item['type'])]) @endforeach
@endsection @section('footer') @vite(['resources/js/watch.js']) @endsection @section('content')

{{$show['title']}}@if($season) - {{$season['label']}}@endif

{{ $show['title'] ?? ''}}

{{ $season['overview'] ?? $show['overview']}}

Aired: {{ $season['air_date'] ?? $show['first_air_date']}}

Rating: {{$season['vote_average'] ?? $show['vote_average']}}

@if($show['runtime'] )

Duration: {{$show['runtime']}}

@endif

Actors: @foreach($show['cast'] as $actor) {{ $actor['name'] }}@if(!$loop->last), @endif @endforeach

{{--

Creators: @foreach($show['crew'] as $actor) {{ $actor['name'] }}@if(!$loop->last), @endif @endforeach

--}} @isset($show['genres'])

Genres: @foreach($show['genres'] as $genre) {{ $genre['name'] }}@if(!$loop->last), @endif @endforeach

@endisset @isset($show['keywords'])

Tags: @foreach($show['keywords'] as $keyword) {{ $keyword['name'] }}@if(!$loop->last), @endif @endforeach

@endisset

Seasons ({{ count($show['seasons']) }})

@foreach($show['seasons'] as $season_item) {{$loop->iteration}}. {{ $season_item['name'] }} @endforeach
@if($season)

Episodes ({{ count($season['episodes']) }})

@foreach($season['episodes'] as $season_item) {{$loop->iteration}}. {{ $season_item['name'] }} @endforeach
@endif

You may also like

@foreach ($show['similar'] as $item) @include('components.show_card') @endforeach

Latest Series Updates

@foreach ($airing as $item) @include('components.show_card') @endforeach
{{-- @include('components.modal', ['backdrop' => $backdrop, 'url_redirect_loading' => $url_redirect_loading, 'title' => $show->title, 'poster_path' => $show->poster_path]) --}} @endsection @section('footer') @endsection