@extends('layouts.front') @section('title', $page->title) @section('meta_description', $page->meta['description'] ?? Str::limit(strip_tags($page->body), 150)) @section('breadcrumbs') @endsection @section('content')
{{-- 🏷️ عنوان الصفحة --}}

{{ $page->title }}

{{-- 📄 محتوى الصفحة --}}
{!! $page->body !!}
{{-- 📢 إعلان (اختياري) --}}
@include('front.partials.ads.dynamic', ['position' => 'in_article'])
{{-- 📤 مشاركة الصفحة --}}

شارك هذه الصفحة

@php $url = urlencode(request()->fullUrl()); $title = urlencode($page->title); @endphp
@endsection