@php use Carbon\Carbon; use Illuminate\Support\Str; @endphp @extends('layouts.root') @section('styles') @endsection @section('root-content')
@csrf
@if($articles->count() > 0) @foreach($articles as $item)
{{ Carbon::parse($item->created)->diffForHumans() }}

{!! Str::limit($item->description, 200, $end='...') !!}

 

{{ Carbon::parse($item->created)->diffForHumans() }}

@endforeach @else

Aucun article publié pour le moment !

{{ Carbon::now() }}
@endif
{{ $articles->links('vendor.pagination.bootstrap-4') }}

Nouvel Article

@csrf
@endsection @section('scripts') @endsection