@php $logoRedirectUrl = auth()->check() ? route('panel') : route('login'); $birthChartRouteMap = [ 'natal-harita' => 'birth-chart.natal-harita', 'dogum-haritasi-analizi' => 'birth-chart.dogum-haritasi-analizi', 'progress-harita' => 'birth-chart.progress-harita', ]; $managedBirthChartPages = collect(); if (\Illuminate\Support\Facades\Schema::hasTable('pages') && \Illuminate\Support\Facades\Schema::hasColumn('pages', 'menu_group')) { $managedBirthChartPages = \App\Models\Page::query() ->published() ->headerVisible() ->where('menu_group', \App\Models\Page::MENU_GROUP_BIRTH_CHART) ->whereNotIn('slug', array_keys($birthChartRouteMap)) ->orderBy('order') ->get(); } @endphp