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

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

@if(count($artist->podcasts))
@foreach($artist->podcasts as $podcast)
{{ $podcast->title }} @if(!$podcast->approved)
{{ __('web.WAITING_FOR_APPROVAL') }}
@endif
@endforeach
@else

{!! $artist->name !!} didn't create any show yet.

@endif
@endsection