@extends('index') @section('content') @include('artist.nav', ['artist' => $artist])
@if(count($artist->followers))
@include('commons.user', ['users' => $artist->followers, 'element' => 'followers'])
@else

{!! $artist->name !!} don't have any followers yet.

@endif
@endsection