@extends('layouts.app') @section('content')
Created by {{ $playlist->user->name ?? 'Unknown' }} {{ $playlist->songs->count() }} songs
{{ $playlist->description }}
| # | Title | Artist | Album | Duration | |
|---|---|---|---|---|---|
| {{ $index + 1 }} |
{{ $song->title }}
|
@if ($song->artist) {{ $song->artist->name }} @elseif ($song->contributors->isNotEmpty()) {{ $song->contributors->pluck('name')->implode(', ') }} @else Unknown Artist @endif | {{ $song->album->title ?? 'Unknown Album' }} | {{ $song->duration }} |
{{-- --}}
|
| This playlist has no songs. | |||||