@extends('web.layouts.app') @push('web.styles') @vite('resources/css/web/page/about.css') @endpush @section('content')
{{ $artist->name }}

{{ $artist->name }}

{!! $artist->description_html !!}

@if ($artist->events->count() > 0)
REGARDER
@foreach ($artist->events as $event)
{{ $event->title }}
@endforeach
@endif @if ($artist->articles->count() > 0)
LIRE
@foreach ($artist->articles as $article)
{{ $article->title }}

Vincent Brasse au Donjon St Louis à Port-Louis

{{ ($article?->views->views ?? 0) . ' Clics' }}

@endforeach
@endif @if (is_array($artist->social_json) && count($artist->social_json) > 0)
SUIVRE
@endif @if ($artists->count() > 0)
AUTRES ARTISTES
@foreach ($artists as $artist)
{{ $artist->name }}
@endforeach
@endif
@if ($allCategories->count() > 0)
@endif
@endsection @push('web.scripts') @endpush