@php $title = $title ?? null; $description = $description ?? null; $keywords = $keywords ?? null; $ogImage = $ogImage ?? null; $canonical = $canonical ?? null; $siteName = settings('restaurant_name', 'Maison Rouge'); $computedTitle = $title ? "{$title} | {$siteName}" : settings('meta_title', "{$siteName} | French-American Gastronomy"); $computedDesc = $description ?: settings('meta_description', 'Experience Michelin-grade French-American dining in SoHo, NY. Order online for gourmet delivery or reserve your table.'); $computedKeywords = $keywords ?: settings('meta_keywords', 'restaurant, online ordering, gourmet, delivery, french bistro, steaks, pasta, soho new york'); $computedOgImage = $ogImage ?: settings('og_image', 'https://images.unsplash.com/photo-1544025162-d76694265947?auto=format&fit=crop&w=1200&q=80'); $computedCanonical = $canonical ?: url()->current(); $favicon = settings('favicon') ? asset('storage/' . settings('favicon')) : null; @endphp