{{-- ===================================================== Etebarit - by Gisoo Web Solutions ------------------------------------------------------ Gisoo.net ------------------------------------------------------ Copyright (c) 2026 Gisoo Web Solutions ===================================================== This code is protected by copyright ===================================================== File: vpn-notice.blade.php ------------------------------------------------------ Use: Bottom-centre notice asking a visitor on a non-Iranian IP to turn off their filter-breaker, since a VPN routes traffic outside Iran and breaks the gateway. Only rendered when the CDN reports a foreign country; dismissible and remembered so it never nags. ===================================================== --}} @props(['persist' => true]) @php // Persisted notice remembers its dismissal; the payment page (persist=false) // starts fresh every load and forgets on dismiss. $initExpr = $persist ? "if (localStorage.getItem('vpn-notice-dismissed') === '1') show = false" : ''; $dismissExpr = $persist ? "show = false; localStorage.setItem('vpn-notice-dismissed', '1')" : 'show = false'; @endphp @if (\App\Support\GeoLocation::isForeign(request())) @endif