@php
$siteName = config('app.name', 'theonesystemco');
$baseUrl = rtrim(config('app.url'), '/');
$locale = app()->getLocale();
$seoTitle = $seoTitle ?? $siteName . ' - منصة دعم واتساب الاحترافية';
$seoDescription = $seoDescription ?? 'منصة احترافية لإدارة محادثات واتساب مع دعم الذكاء الاصطناعي والردود التلقائية.';
$seoImage = $seoImage ?? asset('logo/head-logo.jpg');
$seoImageAbsolute = str_starts_with($seoImage, 'http') ? $seoImage : $baseUrl . parse_url($seoImage, PHP_URL_PATH);
$seoUrl = $seoUrl ?? url()->current();
$seoType = $seoType ?? 'website';
$seoRobots = $seoRobots ?? 'index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1';
@endphp