@extends('layouts.app')
@section('title', 'Blog')
@section('idname', 'single')
@section('content')
@php
use Illuminate\Support\Facades\DB;
// Fetch the release distribution status using the release_id from the route
$release_id = request()->route('id');
$releaseDistribution = DB::table('release_distributions')
->where('release_id', $release_id)
->first();
if ($releaseDistribution) {
$status = $releaseDistribution->status;
$submitted_at = $releaseDistribution->submitted_at;
} else {
$status = 'No distribution record found.';
$submitted_at = null;
}
@endphp
@if (session('success'))
{{ session('success') }}
@endif
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
@if ($submitted_at=='submitted' || $status == 'approved')
@if ($status == 'approved')
Status: Approved
@endif
Distribution Initiated: By 5 days your release will be processed and sent to the following channels:
- ✔ Amazon Music
- ✔ Anghami
- ✔ Audible Magic Licensing
- ✔ AWA
- ✔ Boomplay
- ✔ Claro música
- ✔ Deezer
- ✔ 7 Digital
- ✔ Facebook Rights Manager
- ✔ Gracenote
- ✔ iHeart
- ✔ iTunes / Apple Music
- ✔ Jaxsta
- ✔ JOOX
- ✔ KDigital Media
- ✔ Kkbox
- ✔ Kuaishou
- ✔ Lickd
- ✔ LyricFind
- ✔ MixCloud
- ✔ NetEase Cloud Music
- ✔ Pandora
- ✔ Peloton
- ✔ TikTok Music / Resso
- ✔ Qobuz
- ✔ Rhapsody/Napster
- ✔ JioSaavn
- ✔ Soundcloud
- ✔ Soundexchange
- ✔ Spotify
- ✔ Supernatural
- ✔ TikTok
- ✔ Tencent
- ✔ Trebel
- ✔ Tidal
- ✔ Taobao
- ✔ YouTube Music
- ✔ YouTube Audio Content ID
@elseif ($status == 'rejected')
Status: Rejected
@endif
@if (Auth::user()->role_id == 1 || Auth::user()->role_id == 3)
@endif
@endsection