@extends('layouts.main') @section('title', 'Videos Center - UFG') @push('styles') @endpush @section('content')

Videos Center

Visual Content

Videos Center

Explore our video library featuring company presentations, product demonstrations, and behind-the-scenes content.

@if($featuredVideo)

{{ $featuredVideo->title }}

{{ $featuredVideo->title }}

{{ $featuredVideo->title }}

@if($featuredVideo->category) {{ $featuredVideo->category_name }} @endif
@if($featuredVideo->description)

{{ $featuredVideo->description }}

@endif
@if($featuredVideo->formatted_duration) Duration: {{ $featuredVideo->formatted_duration }} @endif Published: {{ $featuredVideo->published_at->format('F j, Y') }} Views: {{ number_format($featuredVideo->views_count) }}
@endif @if($videos->count() > 0)
@foreach($videos->where('id', '!=', $featuredVideo?->id ?? 0) as $index => $video)
{{ $video->title }} @if($video->category)
{{ $video->category_name }}
@endif

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

@if($video->description)

{{ Str::limit($video->description, 80) }}

@endif
@if($video->formatted_duration) {{ $video->formatted_duration }} @endif {{ number_format($video->views_count) }} views
@endforeach
@else
video_library

No Videos Available

Check back soon for new video content.

@endif @php $totalVideos = $videos->where('id', '!=', $featuredVideo?->id ?? 0)->count(); @endphp @if($totalVideos > 6)
@endif
@endsection @push('scripts') @endpush