@php $data = []; $data['title'] = "Manage Press Release"; @endphp @include('backend.components.header_link', $data)
| # | Title | Video | Actions |
|---|---|---|---|
| {{ $loop->iteration }} | {{ $testimonial->title }} |
@if($testimonial->type == 'video')
@php
// Extract YouTube Video ID
preg_match('/(youtu\.be\/|v=)([^&]+)/', $testimonial->youtube_url, $matches);
$videoId = $matches[2] ?? '';
@endphp
@if($videoId)
@else
View Video
@endif
@elseif($testimonial->type == 'photo')
|