@if($evenement->all_day)
@if($start->diffInDays($end) < 2)
Le {{ $start->format('d/m/Y') }}
@else
Du {{ $start->format('d/m/Y') }} au {{ $end->format('d/m/Y') }}
@endif
@else
@if($start->isSameDay($end))
Le {{ $start->format('d/m/Y') }} de {{ $start->format('H:i') }} à {{ $end->format('H:i') }}
@else
Du {{ $start->format('d/m/Y à H:i') }}
au {{ $end->format('d/m/Y à H:i') }}
@endif
@endif