@extends('layouts.base') @section('content')
@include('user.components.page-header', ['title' => 'My Hub', 'subtitle' => 'List of all celebrities you follow'])

Membership Lists

@if(!blank($myLists))
@foreach($myLists as $myList) @php $artist = $myList->artist; @endphp @if(!blank($artist))
{{$artist->categoryType->name}}
Age
{{$artist->age()}}
Country
{{$artist->country}}
{{getSocialsFollowers($artist->socials , 'facebook')}}
{{getSocialsFollowers($artist->socials , 'tiktok')}}
@endif @endforeach
@else

You currently have no lists.

@endif
@endsection