@extends('layouts.front') @section('title', $post->title) @section('meta_description', $post->meta['description'] ?? Str::limit(strip_tags($post->excerpt ?: $post->body), 150)) @section('breadcrumbs') @endsection @section('content')
{{-- 🖼️ صورة المقال --}} @if($post->cover) {{ $post->title }} @endif {{-- 🧾 معلومات المقال --}}
{{ $post->category->name }} {{ $post->author->name }}
{{-- 🏷️ العنوان --}}

{{ $post->title }}

{{-- 🧩 الملخص --}} @if($post->excerpt)

{{ $post->excerpt }}

@endif {{-- ✍️ المحتوى --}}
{!! $post->body !!}
{{-- 🏷️ الوسوم --}} @if($post->tags->count())
@foreach($post->tags as $t) #{{ $t->name }} @endforeach
@endif {{-- 📢 إعلان داخل المقال --}}
@include('front.partials.ads.dynamic', ['position' => 'in_article'])
{{-- 🔁 مقالات ذات صلة --}} @if($related->count())

قد يعجبك أيضاً

@foreach($related as $p) @endforeach
@endif {{-- 📤 مشاركة المقال --}}

شارك هذا المقال

@php $url = urlencode(request()->fullUrl()); $title = urlencode($post->title); @endphp
واتساب فيسبوك تويتر تلغرام
{{-- 💬 التعليقات --}}

التعليقات

{{-- ✅ عرض التعليقات --}} @forelse($post->comments()->where('status', 'approved')->latest()->get() as $c)
{{ $c->author_name }}
{{ $c->created_at->diffForHumans() }}

{{ $c->content }}

@empty

لا توجد تعليقات بعد، كن أول من يعلّق!

@endforelse {{-- 📝 نموذج إضافة تعليق --}}

أضف تعليقك

@if(session('ok'))
{{ session('ok') }}
@endif
@csrf
@endsection