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

{{ $artist->name }}

{{-- @include('web.partials.share', ['shareTitle' => 'PARTAGEZ CETTE PAGE']) --}}
{{--

{{ $artist->name }}

PARTAGEZ CETTE PAGE

--}}

{!! $artist->description_html !!}

REGARDER
@if (count($artist->articles) == 0)
@else @foreach($artist->articles->take(3) as $article)
@endforeach @endif
{{--
--}} {{--
--}}
@if ($artist->articles->count() > 0)
LIRE
@foreach ($artist->articles as $article)

{{ Str::upper(Str::limit($article->title ?? 'Untitled', 60)) }}

{{ Str::limit(strip_tags($article->excerpt ?? ($article->body ?? '')), 220) }}

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