@extends('layouts.master') @section('title') {{__('admin.dashboard')}} -@endsection @section('css') @endsection @section('content')
{{ucfirst($artist->name)}}

{{ucfirst($artist->name)}} {{$vn}}

{{$artist->categoryType?->name}}
@if(!blank($artist->username('instagram')) && $artist->username('instagram') !='N/A') {{'@'.$artist->username('instagram')}} @else {{$artist->username('instagram')}} @endif
@include('user.components.artist_single_info')
{!! __getButtonTypeForArtist($artist) !!}
@php $currentTab = request()->route('tab') ?? 'contact'; @endphp
{!! __getActiveTabForArtist([ 'id' => $artist->slug, 'type' => 'contact', 'name' => 'Contact Info' ], $currentTab) !!} @if($artist->hasEndorsement()) {!! __getActiveTabForArtist([ 'id' => $artist->slug, 'type' => 'endorsements', 'name' => 'Endorsements' ], $currentTab) !!} @endif @if($artist->hasCharity()) {!! __getActiveTabForArtist([ 'id' => $artist->slug, 'type' => 'philanthropy', 'name' => 'Philanthropy' ], $currentTab) !!} @endif @if($artist->hasEvent()) {!! __getActiveTabForArtist([ 'id' => $artist->slug, 'type' => 'events', 'name' => 'Events & Tours' ], $currentTab) !!} @endif
@yield('artist_content') @include('user.components.artist_bottom')
@endsection @section('javascript') @endsection