{{-- resources/views/actualite.blade.php --}} الأخبار التعليمية - توجيهي @include('layouts.header')

أخبار التعليم

تابع آخر المستجدات في المنظومة التعليمية التونسية.

{{-- Filtres --}}
الكل @foreach ($categories as $category) {{ $category->name }} @endforeach
{{-- Barre de recherche --}}
@forelse ($news as $item)
{{ $item->title }}
@if($item->category) {{ $item->category->name }} @endif

{{ $item->title }}

{{ \Illuminate\Support\Str::limit(strip_tags($item->content), 180) }}

@if($item->author) {{ $item->author->name }} @endif {{ \Carbon\Carbon::parse($item->published_at)->diffForHumans() }}
@if (!$loop->last)
@endif @empty

لا توجد أخبار لعرضها

لم يتم العثور على نتائج. حاول تغيير الفلاتر أو البحث.

Voir toutes les actualités
@endforelse
{{-- La pagination fonctionnera correctement grâce à withQueryString() dans le contrôleur --}} {{ $news->links() }}
@include('layouts.newsletter') @include('layouts.footer')