@extends('layouts.app') @section('title', $seoData['seo_title'] ?? (app()->getLocale() === 'ar' ? 'شركة الزيتونة - الموقع الرسمي' : 'Al-Zaytuna Company - Official Website')) @section('meta_description', $seoData['seo_description'] ?? (app()->getLocale() === 'ar' ? 'الموقع الرسمي لشركة الزيتونة - حلول وخدمات متنوعة، منتجات مميزة، وأخبار الشركة' : 'Official website of Al-Zaytuna Company - Various solutions and services, premium products, and company news')) @section('meta_keywords', $seoData['seo_keywords'] ?? (app()->getLocale() === 'ar' ? 'شركة الزيتونة, خدمات, منتجات, فلسطين' : 'Al-Zaytuna Company, services, products, Palestine')) @section('og_image', getSetting('og_image') ? asset('storage/' . getSetting('og_image')) : asset('favicon.svg')) @section('content')

{{ app()->getLocale() === 'ar' ? 'شركة الزيتونة - الموقع الرسمي' : 'Al-Zaytuna Company - Official Website' }}

@if (!empty($slider)) @include('partials.slider', ['slider' => $slider]) @endif @foreach ($block as $page) @php $templateKey = App\Models\Template::find($page->template_id)->key ?? null; @endphp @if ($templateKey) @include('templates.home.' . $templateKey, ['block' => $page]) @endif @endforeach @endsection