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