@extends('layouts.app') @section('title', 'Video Gallery - Saba Remedies') @section('content')

Video Gallery

Health talks, Unani herbal formulations guide, and doctor lectures

@if(isset($categories) && $categories->count() > 0)
All Videos @foreach($categories as $cat) {{ $cat->vcat_name ?? $cat->name }} @endforeach
@endif @if(isset($videos) && $videos->count() > 0)
@foreach($videos as $vid) @php $videoUrl = $vid->video_link ?? $vid->video ?? ''; if (str_contains($videoUrl, 'watch?v=')) { $parts = explode('watch?v=', $videoUrl); $embedUrl = 'https://www.youtube.com/embed/' . explode('&', $parts[1])[0]; } elseif (str_contains($videoUrl, 'youtu.be/')) { $parts = explode('youtu.be/', $videoUrl); $embedUrl = 'https://www.youtube.com/embed/' . $parts[1]; } elseif (str_contains($videoUrl, 'embed/')) { $embedUrl = $videoUrl; } else { $embedUrl = 'https://www.youtube.com/embed/' . $videoUrl; } @endphp
@endforeach
{{ $videos->links() }}
@else

No videos found

Videos will appear here once published.

@endif
@endsection