@extends('layouts.public') @section('title', 'Videos') @section('content') @include('partials.page-header', ['title' => $settings?->videos_title ?: 'Videos'])
@if($categories->isNotEmpty())
@foreach($categories as $category) @endforeach
@endif @if($videos->isEmpty())
No hay videos publicados.
@else
@foreach($videos as $video)
@if(youtube_thumb($video->url)) {{ $video->title }} @endif
{{ $video->title }}
@if($video->category)
{{ $video->category }}
@endif
@endforeach
@endif
@endsection @push('scripts') @endpush