@extends('index') @section('content') @include('playlist.nav', ['playlist' => $playlist])
@if(count($playlist->collaborators))
@include('commons.user', ['users' => $playlist->collaborators, 'element' => 'profile'])
@else
@if(! auth()->check() || auth()->check() && auth()->user()->username != $playlist->username)

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

@else

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

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

@endif
@endif
@endsection