{{-- Universal SEO partial. Reads $seo array from parent view scope. Sensible defaults if $seo is unset or partially set. Per-page usage in any blade view: @php $seo = [ 'title' => 'Page Title — GE-AS', 'description' => 'Up to ~155 chars page summary.', 'canonical' => url()->current(), // optional, defaults to current url 'og_image' => asset('images/og.png'), // optional, defaults to og-default.png 'og_type' => 'article', // optional, defaults to 'website' 'robots' => 'index, follow', // optional, defaults to 'index, follow' 'json_ld' => [...], // optional, page-specific schema ]; @endphp --}} @php $_seo = $seo ?? []; $_title = $_seo['title'] ?? 'Global E-Commerce Arbitrage Store — Bid, Sell, Earn'; $_description = $_seo['description'] ?? 'Global C2C arbitrage platform. Bid on real products across 14 marketplaces. AI trading plans, copy trading via pilots, USDT settlement on Solana. Start with $50.'; $_canonical = $_seo['canonical'] ?? url()->current(); $_og_image = $_seo['og_image'] ?? asset('images/og-default.png'); $_og_type = $_seo['og_type'] ?? 'website'; $_robots = $_seo['robots'] ?? 'index, follow'; $_json_ld = $_seo['json_ld'] ?? null; @endphp