{{-- ===== FOOTER ===== --}} @php $c = $content ?? collect(); $footerDesc = $c->has('description') ? $c->get('description')->content_value : null; $footerEmail = $c->has('email') ? $c->get('email')->content_value : null; $footerSupportEmail = $c->has('support_email') ? $c->get('support_email')->content_value : null; $footerWebsite = $c->has('website') ? $c->get('website')->content_value : null; // White-label fallbacks $bName = $brandName ?? 'PNLCS'; $bUrl = $brandUrl ?? 'https://www.panelica.com'; $bEmail = $footerEmail ?? ($brandEmail ?? 'info@panelica.com'); $bSupportEmail = $footerSupportEmail ?? 'support@panelica.com'; $bWebsite = $footerWebsite ?? 'panelica.com'; $bCopyright = $brandCopyright ?? $bName; $bDesc = $footerDesc ?? ($bName . ' ' . __('sections.footer.description')); @endphp