Videos destacados de la semana
@foreach($popularVideos as $video) {{--
{{ Str::limit($video->title, 85) }}

{{ Str::limit($video->title, 85) }}

--}}
thumbnail
{{ short_number($video->views) }}
{{ short_number($video->likes) }}
{{ short_number($video->comments) }}

{{ $video->posted_at }}

{{ Str::limit($video->title, 20) }}
Detalles del video
Thumbnail
{{ $video['title'] ?? 'Sin título' }}

Plataforma: {{ $video['platform'] ?? 'Desconocida' }} | Publicado: @if(!empty($video['posted_at'])) @else Desconocida @endif

Visitas

{{ number_format($video['views'] ?? 0) }}

Me gusta

{{ number_format($video['likes'] ?? 0) }}

Comentarios

{{ number_format($video['comments'] ?? 0) }}

Compartidos

{{ number_format($video['shares'] ?? 0) }}

Guardados

{{ number_format($video['collects'] ?? 0) }}

Republicados

{{ number_format($video['reposts'] ?? 0) }}

Retención: {{ $video['engagement'] ?? 0 }}%

Duración: @if(!empty($video['duration'])) {{ gmdate("H:i:s", $video['duration']) }} @else N/A @endif

Idioma del texto: {{ $video['text_language'] ?? 'Español' }}
Texto traducible: {{ !empty($video['text_translatable']) && $video['text_translatable'] ? 'Sí' : 'No' }}

Privado: {{ !empty($video['is_private']) ? 'Sí' : 'No' }} Original: {{ !empty($video['is_original']) ? 'Sí' : 'No' }} Oficial: {{ !empty($video['is_official']) ? 'Sí' : 'No' }} Fijado: {{ !empty($video['is_pinned']) ? 'Sí' : 'No' }} Duet habilitado: {{ !empty($video['duet_enabled']) ? 'Sí' : 'No' }} Stitch habilitado: {{ !empty($video['stitch_enabled']) ? 'Sí' : 'No' }} Recogido: {{ !empty($video['collected']) ? 'Sí' : 'No' }}
@if(!empty($video['music_title']) || !empty($video['music_author']))
@if(!empty($video['music_cover'])) Music Cover @endif

Música: {{ $video['music_title'] ?? 'Desconocida' }}

Autor: {{ $video['music_author'] ?? 'Desconocido' }}

@if(!empty($video['music_url'])) Escuchar @endif
@endif Video ID: {{ $video['video_id'] ?? 'N/A' }}
@endforeach