@extends('layouts.app') @section('title', $ringtone->seo_title ?: $ringtone->title.' '.$ringtone->content_type_label.' Download') @section('meta_description', $ringtone->seo_description ?: ('Download '.$ringtone->title.' '.$ringtone->content_type_label.' free with preview and details.')) @section('meta_keywords', $ringtone->seo_keywords ?: strtolower($ringtone->title.', '.$ringtone->title.' '.$ringtone->content_type_label.', free '.$ringtone->content_type_label)) @section('canonical', route('frontend.content.show', $ringtone->slug)) @section('og_type', 'article') @if ($ringtone->isImageType() || $ringtone->isVideoType()) @section('og_image', $ringtone->file_url) @endif @section('content')

{{ $ringtone->content_type_label }}

{{ $ringtone->title }}

@if ($ringtone->description)

{{ $ringtone->description }}

@endif
@if ($ringtone->duration)

Duration

{{ gmdate('i:s', $ringtone->duration) }}

@endif

Size

{{ $ringtone->size ? number_format($ringtone->size / 1024, 1).' KB' : 'N/A' }}

Total Downloads

{{ number_format($ringtone->downloads) }}

Format

{{ strtoupper(pathinfo($ringtone->download_file_path, PATHINFO_EXTENSION) ?: 'FILE') }}

Uploaded By

{{ $ringtone->uploader?->name ?? 'Admin' }}

@if ($ringtone->isAudioType())
00:00 / {{ $ringtone->duration ? gmdate('i:s', $ringtone->duration) : '00:00' }}
@elseif ($ringtone->isImageType())
{{ $ringtone->title }}
@elseif ($ringtone->isVideoType())
@endif Download {{ $ringtone->content_type_label }} @if ($ringtone->isAudioType() && !empty($hasIphoneFile)) Download for iPhone (.m4r) @endif
@if ($ringtone->tags->isNotEmpty())
@foreach ($ringtone->tags as $tag) #{{ $tag->name }} @endforeach
@endif

Related {{ $ringtone->content_type_label }}{{ $relatedRingtones->count() !== 1 ? 's' : '' }}

View All
@forelse ($relatedRingtones as $item) @include('frontend.partials.content-card', ['ringtone' => $item]) @empty

No related {{ strtolower($ringtone->content_type_label) }} found.

@endforelse
@if ($ringtone->isAudioType()) @endif @endsection