@extends('layouts.public2') @section('infosradio', 'articles') @section('radio_name', $radio->name) @section('radio_description', $radio->description) @section('radio_contact', $radio->phone) @section('radio_adresse', $radio->address) @section('radio_email', $radio->email) @section('css') @endsection @section('content') {!! nl2br('Articles : ' . $radio->name) !!} Toutes les catégories @foreach($categories as $category) {{$category->name}} @endforeach @if ($news->count() > 0) @foreach ($news as $new) {{ $new->category->name }} {{ $new->title }} {{ Str::limit($new->resume, 200, '...') }} Publié le {{ \Carbon\Carbon::parse($new->created_at)->locale('fr')->translatedFormat('l d F Y') }} @endforeach @else Aucun article disponible pour le moment. @endif {{ $news->links('pagination::bootstrap-5') }} @endsection @section('scripts') @endsection
{{ Str::limit($new->resume, 200, '...') }}