@include('super_admins.includes.head') @php $site_logo = App\Models\GeneralSetting::where('name', 'logo')->first(); $primary_color = App\Models\ThemeSetting::where('color', 'primary_color') ->whereNot('theme_code', 'default') ->active() ->first(); $secondary_color = App\Models\ThemeSetting::where('color', 'secondary_color') ->whereNot('theme_code', 'default') ->active() ->first(); // dd($primary_color); // dd($secondary_color); @endphp
Consultant
@include('super_admins.includes.navbar') @include('super_admins.includes.sidebar')
@yield('content')
@include('super_admins.includes.footer') @include('super_admins.includes.foot')