{{-- Welcome Banner --}}

Welcome back, {{ $user->name }}!

Here's an overview of your activity on hstream.moe. Dive back into your favorites or discover something new.

{{-- Decorative circles --}}
{{-- Quick Links Grid --}} {{-- Recent Activity Section --}}

Recent Activity

@php $recentWatched = $user->watched()->with('episode')->latest()->take(4)->get(); $recentComments = $user->comments()->latest()->take(2)->get(); @endphp @if($recentWatched->isEmpty() && $recentComments->isEmpty())

No activity yet. Start watching something!

@else
{{-- Recently Watched --}} @if($recentWatched->isNotEmpty())

Recently Watched

@foreach($recentWatched as $watched) {{ $watched->episode->title }}

{{ $watched->episode->title }}

@endforeach
@endif {{-- Recent Comments --}} @if($recentComments->isNotEmpty())

Recent Comments

@endif
@endif