{{-- @if(isset($seo->title))
{{ $seo->title }}
@else
{{ setting('site.title', 'Laravel Wave') . ' - ' . setting('site.description', 'The Software as a Service Starter Kit built on Laravel & Voyager') }}
@endif --}}
{{ config('app.name', 'Numstation') }}
{{-- Social Share Open Graph Meta Tags --}} @if(isset($seo->title) && isset($seo->description) && isset($seo->image))
@if(isset($seo->image_w) && isset($seo->image_h))
@endif @endif
@if(isset($seo->description))
@endif
@yield('style') {{-- @if(config('wave.demo') && Request::is('/')) @include('theme::partials.demo-header') @endif --}} @if(!Auth::check() && $routeName != 'login' && $routeName != 'admin-login' && $routeName != 'user-terms-and-conditions' && $routeName != 'user-privacy-policy' && $routeName != 'user-register' && $routeName != 'forgot-password' && $routeName != 'register' && $routeName != 'verify') @include('theme::partials.header') @yield('content') @include('theme::partials.footer') @else @if($routeName == 'login' || $routeName == 'admin-login' || $routeName == 'user-terms-and-conditions' || $routeName == 'user-privacy-policy' || $routeName == 'user-register' || $routeName == 'forgot-password' || $routeName == 'register' || $routeName == 'verify') @yield('content') @else
@include('theme::partials.sidebar')
@include('theme::partials.dashboard-navigation')
@yield('content')
@endif @if(config('wave.dev_bar')) @include('theme::partials.dev_bar') @endif @endif
@vite(['resources/js/app.js']) @include('theme::partials.toast') @if(session('show_toast') && session('message')) @endif @waveCheckout @yield('script')