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

Trending TV Shows

Most downloaded TV shows in the last 48 hours - Updated every hour

@if(auth()->check()) RSS Feed @endif Browse All TV Shows
@if(isset($trendingShows) && $trendingShows->count() > 0)
@foreach($trendingShows as $index => $show)
#{{ $index + 1 }}
@if($show->image) {{ $show->title }} @else
@endif
{{ number_format($show->total_downloads) }}

{{ $show->title }}

@if($show->started && $show->started != '0000-00-00') {{ \Carbon\Carbon::parse($show->started)->format('Y') }} @endif @if($show->countries_id) {{ strtoupper($show->countries_id) }} @endif {{ $show->release_count }} Release{{ $show->release_count > 1 ? 's' : '' }}
@if($show->tvdb) TVDB @endif @if($show->tvmaze) TVMaze @endif @if($show->trakt) Trakt @endif @if($show->tmdb) TMDb @endif
@if($show->summary)

{{ $show->summary }}

@endif
@endforeach
@else @endif
About Trending TV Shows: This list shows the top 15 most downloaded TV shows on our platform in the last 48 hours. The rankings are updated automatically every hour based on recent download activity. Click on any show to see all available episodes and detailed information.
@endsection