@extends('admin.layouts.masterlayout') @section('title') View Artist @endsection @section('head_title') Artist Management @endsection @section('content')

Artist Details

Artist Details / Artist Management

Artist Information

Profile Image

{{ isset($artist->name) ? $artist->name : '-' }}

Artist

Name:

{{ isset($artist->name) ? $artist->name : '-' }}

Phone:

{{ isset($artist->phone) ? $artist->phone : '-' }}

Email:

{{ isset($artist->email) ? $artist->email : '-' }}

Address:

{{ isset($artist->address) ? $artist->address : '-' }}

Country:

{{ isset($artist->country) ? $artist->country : '-' }}

City:

{{ isset($artist->city) ? $artist->city : '-' }}

Status

@if(isset($artist->status)) @if($artist->status == 'active') Active @else Inactive @endif @else - @endif

Bio:

{{ isset($artist->bio) ? $artist->bio : '-' }}

Social Links:

@php $socialLinks = isset($artist->artistDetail) ? json_decode($artist->artistDetail->social_links ?? '[]') : []; @endphp @if (!empty($socialLinks))
    @foreach ($socialLinks as $link)
  • @if (!empty($link)) {{ $link }} @else - @endif
  • @endforeach
@else

-

@endif

Other Information

Professional Title

{{ isset($artist->artistDetail->professional_title) ? $artist->artistDetail->professional_title : '-' }}

Experience:

{{ isset($artist->artistDetail->experience) ? $artist->artistDetail->experience : '-' }}

Expertise:

{{ is_array($expertiseArray) ? implode(', ', $expertiseArray) : '' }}

Portfolio Images:

@forelse($artist_portfolioimages ?? [] as $image)
Reference Photo
@empty - @endforelse
@if(!$shop_artists->isEmpty())

Shop Information

@foreach($shop_artists as $shop)
Profile Image

{{ $shop->shopDetail->shop_name }}

@if($shop->confirm_status == 0)

Pending

@elseif($shop->connected_with_shop == 1)

Connected

@else

Not Connected

@endif

Commission: {{ $shop->commission . "%" ?? "-"}}

@if($shop->artist_type == 0)
Inshop
@else
Guest
@endif
@endforeach
@endif
@endsection