@extends('index') @section('content') @include('artist-management.nav', ['artist' => $artist])

{{ __('web.LB_UPLOAD_ALBUM_SELECT_DESC') }}

@if(count($artist->albums))
@foreach($artist->albums as $album)
{!! $album->title !!}
@endforeach
@else

{!! $artist->name !!} didn't release any album yet.

@endif
@endsection