@extends('layout.app') @section('content') @include('components.banner',['title'=>'Blogs','img'=>'pics/banner/blog-banner.jpg'])
@if ($blogs != null && count($blogs)>0)
@foreach($blogs as $key => $blog) @php $date_time = $blog->creation_date; $nouveau_format = \Carbon\Carbon::parse($date_time); @endphp
@endforeach
@else
Aucun post n'a été effectué
@endif
    {{ $blogs->links() }}
@endsection