{{-- Belt-and-suspenders for the X-Robots-Tag header: keep non-production environments out of search results even if a proxy strips it. --}} @unless(app()->environment('production')) @endunless @php($tenant = app(\App\Support\CurrentTenant::class)) @php($brand = $tenant->branding()) {{-- Per-page SEO payload attached by Seo::render() (public marketplace pages). Pages rendered with plain Inertia::render (admin, portals) fall back to the bare site/tenant name. --}} @php($seo = $seo ?? null) @php($siteName = \App\Support\Seo::siteName()) @php($metaDescription = $seo['description'] ?? ($tenant->check() && $brand && !empty($brand->tagline) ? $brand->tagline : null))