@include('partials.head')
@include('layouts.navigation')
@include('user.partials.background')
@include('profile.partials.sidebar')
@php $episode_ids = array_unique( DB::table('comments') ->where('commenter_id', $user->id) ->get() ->pluck('commentable_id') ->toArray(), ); @endphp @foreach ($episode_ids as $episode_id) @php $episode = App\Models\Episode::where('id', $episode_id)->first(); @endphp @endforeach
@include('layouts.footer')