12 lines
395 B
PHP
12 lines
395 B
PHP
<x-profile-layout>
|
|
<div class="space-y-5">
|
|
{{-- Header --}}
|
|
<h2 class="text-xl font-bold text-gray-900 dark:text-gray-100 flex items-center gap-2">
|
|
<i class="fa-solid fa-eye text-rose-500"></i>
|
|
{{ __('nav.watched') }}
|
|
</h2>
|
|
|
|
{{-- Content from Livewire --}}
|
|
@livewire('watched', ['user' => $user])
|
|
</div>
|
|
</x-profile-layout> |