@extends('layouts.app') @section('title', 'Artist Information') @section('idname', 'single') @section('content')

Artist Statistics

@csrf
@if(isset($data) && isset($data['artist_info'])) @php $artist = $data['artist_info']; @endphp

Artist Information

Name: {{ htmlspecialchars($artist['name']) }}

Avatar: {{ htmlspecialchars($artist['name']) }}

Site: Visit Artist Page

Genres: {{ implode(', ', $artist['genres']) }}

Social Links:
@elseif(session('errors'))

{{ session('errors')->first() }}

@else

No data found for the given Artist ID.

@endif
@endsection