@props(['campaign'])

Gestión de Contenidos

@csrf
@forelse($campaign->contents as $content)
@if($content->type === 'image') Content @elseif($content->type === 'video')
🎬
VIDEO @elseif($content->type === 'copy')
{{ Str::limit($content->text_content, 150) }}
@else
📄
@endif
@if($content->url) Ver @endif
{{ ucfirst($content->status) }} {{ $content->type }}
@if($content->status === 'pending_approval' || $content->status === 'draft')
@csrf @method('PATCH')
@endif
@empty
No hay contenidos subidos para esta campaña.
@endforelse