@extends('layouts.app') @section('content')

جميع الأخبار

@foreach($news as $item)
@if(!empty($item->image)) {{ $item->title }} @elseif(!empty($item->youtube_url)) @php preg_match('/(youtu\.be\/|v=)([A-Za-z0-9_\-]+)/', $item->youtube_url, $matches); $youtubeId = $matches[2] ?? null; @endphp @if($youtubeId) @endif @else Pas d'image @endif
{{ $item->title }}
{!! strip_tags(Str::limit($item->resume_ar, 200)) !!}
@endforeach
{{ $news->links() }} {{-- pagination --}}
@endsection