@extends('layouts.admin') @section('content')

ARTIST Details

Back to All Artist

@include('components.admin.error-message')
Profile Details
{{$artist->name}}
{{$artist->name}}
{{$artist->categoryType?->name}}

About
  • DOB: {{$artist->date_of_birth}} ({{$artist->age() . " years"}})
  • EMAIL: {{$artist->email ?? 'N/A'}}
  • PHONE: {{$artist->phone ?? 'N/A'}}
  • GENDER: {{$artist->gender ?? 'N/A'}}
  • Country: {{get_country_three_abbr($artist->country)}}
  • Place of Birth: {{$artist->placeOfBirth()}}
  • Social Media:
    Facebook: Username - {{$artist->username('facebook')}} Total - {{getSocialsFollowers($artist->socials , 'facebook')}}
    Instagram: Username - {{$artist->username('instagram')}} Total - {{getSocialsFollowers($artist->socials , 'instagram')}}
    Twitter: Username - {{$artist->username('twitter')}} Total - {{getSocialsFollowers($artist->socials , 'twitter')}}
    TikTok: Username - {{$artist->username('tiktok')}} Total - {{getSocialsFollowers($artist->socials , 'tiktok')}}
  • {!! status_badge($artist->status) !!}

Actions
Managers
ID Type Amount Status

@endsection @section('script') @endsection