@if (
!Route::is([
'error-404',
'error-500',
'lock-screen',
'otp',
'forgot-password',
'index',
'register',
'change-password',
]))
@include('layout.partials.header')
@if (!Route::is(['error-404', 'job-list', 'job-view']))
@include('layout.partials.nav')
@endif
@if (!Route::is(['error-404', 'job-list', 'job-view', 'index', 'register', 'change-password']))
@include('layout.partials.twocolumnsidebar')
@endif
@if (
!Route::is([
'chat',
'contacts',
'ticket-view',
'incoming-call',
'job-list',
'job-view',
'outgoing-call',
'tasks',
'ticket-view',
'video-call',
'voice-call',
]))
@endif
@if (Route::is(['chat', 'tasks', 'ticket-view', 'video-call', 'voice-call']))
@endif
@if (Route::is(['contacts']))
@endif
@if (Route::is(['incoming-call']))
@endif
@if (Route::is(['outgoing-call']))
@endif
@if (Route::is(['job-list', 'job-view']))
@endif
@endif
@if (Route::is([
'error-404',
'error-500',
'lock-screen',
'otp',
'forgot-password',
'index',
'register',
'change-password',
]))
@yield('content')
@endif
@if(Route::is(['incoming-call','outgoing-call']))
@component('components.model-popup')
@endcomponent
@endif
@if (
!Route::is([
'error-404',
'error-500',
'lock-screen',
'otp',
'forgot-password',
'index',
'register',
'change-password',
'job-list',
'job-view'
]))
@component('components.theme-setting')
@endcomponent
@endif
@include('layout.partials.footer-scripts')