@php $seoSiteName = (string) config('seo.site_name', config('app.name', 'Origo')); $seoDescription = (string) config('seo.description', 'Plataforma de crowdfunding.'); $seoKeywords = (string) config('seo.keywords', 'crowdfunding'); $seoAuthor = (string) config('seo.author', $seoSiteName); $seoOgImage = (string) (config('seo.og_image') ?? ''); $canonicalUrl = url()->current(); $pageSeo = $pageSeo ?? []; $effectiveTitle = trim((string) ($pageSeo['title'] ?? '')); $effectiveDescription = trim((string) ($pageSeo['description'] ?? $seoDescription)); $effectiveRobots = trim((string) ($pageSeo['robots'] ?? 'index, follow')); $effectiveCanonical = (string) ($pageSeo['canonical'] ?? $canonicalUrl); $effectiveOgType = trim((string) ($pageSeo['og_type'] ?? 'website')); $effectiveOgImage = trim((string) ($pageSeo['og_image'] ?? $seoOgImage)); $documentTitle = $effectiveTitle ? ($effectiveTitle . ' | ' . $seoSiteName) : ($seoSiteName . ' - Crowdfunding'); @endphp