@extends('layouts.app') @section('content')
| Album | Artist | Release Date | Songs | Status | Actions |
|---|---|---|---|---|---|
|
{{ $album->title }}
|
{{ $album->artist->name ?? '-' }} | {{ \Carbon\Carbon::parse($album->release_date)->format('d M Y') }} | {{ $album->songs()->count() }} | @if ($album->status === 'active') Active @elseif($album->status === 'pending') Pending @else Inactive @endif |
|