@extends('layouts.app')
@section('header-title')
Videos
@endsection
@section('nav')
@endsection
@section('content')
Editors Choice
Specially curated videos for you by Live Airways
@foreach ($editorsChoiceVideos as $video)
@php
preg_match('/src="([^"]+)"/', $video->youtube_url, $matches);
$videoSrc = isset($matches[1]) ? $matches[1] : '';
@endphp
@php
$staticIcon = 'https://yt3.ggpht.com/ytc/AIdro_lMcPFMQAWfvTbHqJ_cZB6RLJN0Oyp2jcP6LXgYBfcSEEQ=s48-c-k-c0x00ffffff-no-rj';
$staticName = 'Live Airways';
$staticViews = '1.5M';
$staticAge = $video->created_at ?? '10 months ago';
@endphp
-
@endforeach
@foreach ($categoriesWithVideoCounts as $category)
@endforeach
@endsection
@push('scripts')
@endpush