@extends('website.layout.main') @section('content')
@forelse ($videos as $video) @if($video->youtube_id)
{{ $video->title }}

{{ \Carbon\Carbon::parse($video->created_at)->format('M d, Y') }}

@endif @empty

No videos yet. Add videos.

@endforelse
@endsection