{{-- Timeline --}}
    @foreach ($watchedGrouped as $day => $episodes)
  1. {{-- Timeline Dot --}} {{-- Date Header --}}
    {{ $episodes->count() }} {{ Str::plural('episode', $episodes->count()) }}
    {{-- Episodes Grid --}}
    @foreach ($episodes as $episode) @endforeach
  2. @endforeach
{{-- Pagination --}} @if($watched->hasPages())
{{ $watched->links('pagination::tailwind') }}
@endif {{-- Empty State --}} @if($watched->isEmpty())

No watch history

Start watching and your history will appear here.

@endif