@extends('layouts.app') @section('content')
@csrf @method('PUT')

Informasi Lagu

Judul lagu
@error('title')
{{ $message }}
@enderror
Tipe Lagu
{{-- --}} @error('types')
{{ $message }}
@enderror
Tanggal Rilis
@error('release_date')
{{ $message }}
@enderror
@if ($song->types == 'sudah release' && $song->parent_song_id == null)
Kode ISRC
@error('isrc_code')
{{ $message }}
@enderror
@endif
Album
@error('album_id')
{{ $message }}
@enderror
Genre
@error('genre_id')
{{ $message }}
@enderror
Deskripsi
@error('description')
{{ $message }}
@enderror
Lirik
Label Lagu (artist/cover)
@error('labels')
{{ $message }}
@enderror
{{--
Tag User
tag user yang ingin diberitahukan mengenai lagu ini.
--}}
@php $linksNo = 0; @endphp

Link Social Media Lagu

Platform
Links (URL)
Keterangan

File & Media

Gambar Cover
@error('cover_image')
{{ $message }}
@enderror
wajib ukuran standar 1500px x 1500px atau 3000px x 3000px *
@php $imageUrl = app( \App\Services\SongServices::class, )->getCoverImageS3($song, 'md'); @endphp
@if ($song->create_release == '0') @endif
File Audio
@error('file_path')
{{ $message }}
@enderror
format WAV Max 300Mb Harus 24 bit , 44,100 Hz / 48,000 Hz untuk HD Audio *
Durasi (detik)
detik mulai untuk video pendek

Kontributor

Orang-orang di balik karya musik
@php $numrow = 0; @endphp @foreach ($song->songContributors as $contributor) @php $numrow++; $id = $contributor->id; $userId = $contributor->user->id; $role = $contributor->role; $description = $contributor->description ?? ''; $name = $contributor->user->name; @endphp
@if ($role == 'Composer')
@endif
{{ $name }}
{{ $role }}
{{ \Illuminate\Support\Str::limit($description, 100) }}
@if ($numrow > 1) @endif
@endforeach {{-- @for ($i = 0; $i <= 3; $i++)
@if ($i == 0)
@endif
Nama Kontributor
Role
deskripsi kontributor
Ubah
Hapus
@endfor --}}

Lisensi & Harga

{{-- --}}
@php @endphp @if (isset($song->licenses)) @foreach ($song->licenses as $row)
{{ $row->license_type }} {{ $row->time_amount == 0 ? '' : $row->time_amount }} {{ $row->time_type ?? '' }}
{{ $row->payment_type }}
{{ $row->zone }}
@php $spay = ''; if ( $row->payment_type == 'Beli Harga' ) { $spay = 'Rp. ' . number_format( $row->amount, 2, ',', '.', ); } else { $spay = number_format( $row->amount, 2, ',', '.', ) . '%'; } @endphp
{{ $spay }}
is_active == '1')>
{{-- --}}
@endforeach @endif
Zona Lokal
@error('local_zones')
{{ $message }}
@enderror

Syarat dan Persetujuan (Agreement)

@if (isset($agreement->agreementItems)) @php $itemNo = 0; @endphp @foreach ($agreement->agreementItems as $rowItem) @php $itemNo++; @endphp @if ($rowItem->type == 'text')
{!! $rowItem->content !!}
@php $checked1 = ''; @endphp @foreach ($song->agreementResponse as $resItem) @if ($resItem->agreement_item_id == $rowItem->id && $resItem->accepted == '1') @php $checked1 = 'checked'; @endphp @break @endif @endforeach
@endif @if ($rowItem->type == 'checklist')
@php $checked2 = ''; @endphp @foreach ($song->agreementResponse as $resItem) @if ($resItem->agreement_item_id == $rowItem->id && $resItem->accepted == '1') @php $checked2 = 'checked'; @endphp @break @endif @endforeach
@endif @endforeach @else
Belum ada agreement yang diatur
@endif
@endsection @push('styles') @endpush @section('scripts') @endsection