@if(session('success'))
{{ session('success') }}
@endif
| المعرف |
تمت الإضافة بواسطة |
العنوان |
الصورة / YouTube |
منشور |
التاريخ |
الإجراءات |
@forelse ($news as $item)
| {{ $item->id }} |
{{ $item->utilisateur ? $item->utilisateur->nom_prenom : 'غير محدد' }} |
{{ $item->title }}
|
@if(!empty($item->imageSrc))
@elseif($item->youtube_url)
@php
if (preg_match('/(youtu\.be\/|v=)([A-Za-z0-9_\-]+)/', $item->youtube_url, $m)) {
$youtubeId = $m[2];
} else {
$youtubeId = null;
}
@endphp
@if($youtubeId)
@else
YouTube
@endif
@else
—
@endif
|
{{ $item->published ? 'نعم' : 'لا' }}
|
{{ $item->date }} |
|
@empty
| لا توجد أخبار حالياً. |
@endforelse
{{-- Pagination --}}
{{ $news->links('pagination::bootstrap-5') }}