@extends('layouts.master') @section('title') {{__('admin.dashboard')}} -@endsection @section('css') @endsection @section('content') MemberShip Lists @if(!blank($myLists)) Name Category Age Country @forelse($myLists as $myList) @php $artist = $myList->artist; @endphp @if(!blank($artist)) {{$artist->name}} {{$artist->name}} Category: {{$artist->categoryType->name}} Age:{{$artist->age()}} Country:{{$artist->country}} {{getSocialsFollowers($artist->socials , 'instagram')}} {{getSocialsFollowers($artist->socials , 'facebook')}} {{getSocialsFollowers($artist->socials , 'tiktok')}} {{getSocialsFollowers($artist->socials , 'spotify')}} View @endif @empty @endforelse @else You currently have no lists. @endif @endsection @section('javascript') @endsection
You currently have no lists.