@php $gsSocial = \App\Models\GeneralSetting::where('key', 'social_links')->first(); $socialLinks = $gsSocial ? json_decode($gsSocial->value, true) : []; if (!is_array($socialLinks)) { $socialLinks = []; } // চেক করা হচ্ছে কোনো বৈধ সোশ্যাল লিংক আছে কিনা $hasSocial = false; foreach(['facebook', 'youtube', 'telegram', 'whatsapp'] as $key) { if(!empty($socialLinks[$key]) && $socialLinks[$key] !== '#') { $hasSocial = true; } } $path = request()->path(); $is = fn($p) => str_starts_with($path, trim($p, '/')); $aboutUrl = \Illuminate\Support\Facades\Route::has('about.us') ? route('about.us') : url('/about-us'); @endphp @yield('title', 'PRO EARN') @stack('head')
PRO EARN SHOP
@yield('content')
@stack('script') @stack('scripts')