@extends('front._.app')
@section('content')
@include('front._.header')
@foreach ($MovieLibrary as $MovieLibrary)
Publié le {{ $MovieLibrary->created_at->format('d/m/Y') }} à {{ $MovieLibrary->created_at->format('H:i') }}
{{ \Illuminate\Support\Str::limit($MovieLibrary->title,35,'...') }}
@endforeach
@include('front/_/footer')
@endsection