@extends('layouts.base') @section('content')
@include('user.components.page-header', ['title' => 'Browse Celebrities', 'subtitle' => 'Private Database of the Worlds Most Popular Celebrities'])
@include('user.components.filters', ['filters' => $filters])
Celebrities
@forelse($artists as $artist)
{{$artist->categoryType->name}}
Age
{{$artist->age()}}
Country
{{$artist->country}}
{{getSocialsFollowers($artist->socials , 'facebook')}}
{{getSocialsFollowers($artist->socials , 'tiktok')}}
@empty @endforelse
{{ $artists->links('vendor.pagination.custom') }}
@endsection