@extends('layouts.app')
@section('title', 'Vidéos')
@section('main_title_wrapper')
@forelse ($videos as $video)
@php
$MediaEmbed = new \MediaEmbed\MediaEmbed();
$MediaObject = $MediaEmbed->parseUrl($video->fichier);
$image = $MediaObject->image()
@endphp
{{ \Carbon\Carbon::parse($video->created_at)->format('d M Y') }}
@empty
{{"Pas encore de vidéos"}}
@endforelse