@extends('layouts.app') @section('title', 'الأخبار والمناسبات') @section('content') @include('components.page-header', ['title' => 'الأخبار والمناسبات'])
@forelse($news as $article)
@if($article->image) {{ $article->title }} @endif
{{ $article->published_at?->format('Y-m-d') }}

{{ $article->title }}

{{ $article->excerpt ?? \Illuminate\Support\Str::limit(strip_tags($article->content), 120) }}

اقرأ المزيد
@empty

لا توجد أخبار منشورة حالياً.

@endforelse
@endsection