@extends('layouts.app') @section('title', 'Edit Release') @section('idname', 'single') @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(session('success'))
{{ session('success') }}
@endif
@csrf @method('PUT') @php $fileName = request()->route('fileName'); $catalogSummary = \App\Models\CatalogSummary::where('ean13', $fileName)->first(); $albumFormat = $catalogSummary ? $catalogSummary->album_format : 'Not Found'; $version = $catalogSummary ? $catalogSummary->version : 'Not Found'; $label_name = $catalogSummary ? $catalogSummary->label_name : 'Not Found'; @endphp
Indicate the name of this release.
Specify the version of the release if applicable (e.g., Remix, Live).
This is the album format for the given EAN/UPC ({{ $fileName }}).
Specify the primary genre of the release.
Specify the secondary genre of the release, if applicable.
This is the unique identifier for the release (UPC/EAN).
@foreach ($contributors as $contributor)
@endforeach
The official release date of this content.
@foreach ($details as $key => $file) @if (str_contains($key, 'image'))
Image File
@endif @endforeach
@foreach ($details as $key => $file) @if (str_contains($key, 'audio'))

{{ $file['title'] }}

@endif @endforeach
@endsection