@extends('layouts.admin') @section('title', 'Articles - ' . getRadioUsers()->name) @section('content')

Articles

@if (count($news) > 0)
@foreach ($news as $key => $new) @php $category = $new->category; @endphp @endforeach
# Image Titre Catégorie Resumé Date de publication Action
{{ $key + 1 }} {{ $new->title }} {{ $new->title }} @if ($category) {{ $category->name }} @endif {{ Str::limit($new->resume, 200, '...') }} {{ \Carbon\Carbon::parse($new->created_at)->locale('fr')->translatedFormat('l d F Y') }}
@else
aucun

Pas d'Articles

@endif
@endsection @section('script') @endsection