@if(session('success'))
{{ session('success') }}
@endif
| المعرف |
الفئة |
تمت الإضافة بواسطة |
العنوان |
الصورة / YouTube |
منشور |
التاريخ |
الإجراءات |
@forelse ($progActivs as $item)
| {{ $item->id }} |
@if($item->categorie)
{{ $item->categorie->nom_ar }}
@else
—
@endif
|
{{ $item->user ? $item->user->nom_prenom : 'غير محدد' }} |
{{ $item->titre_ar }}
|
@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->created_at ? $item->created_at->format('Y-m-d') : '—' }} |
|
@empty
| لا توجد برامج أو أنشطة حالياً. |
@endforelse
{{-- Pagination --}}
{{ $progActivs->links('pagination::bootstrap-5') }}