@php $currentRoute = Route::currentRouteName(); $noAbsoluteRoutes = ['movie-details', 'tvshow-details', 'episode-details', 'video-detail','pay-per-view.paymentform','pay-per-view']; @endphp @include('frontend::components.partials.logo') @include('frontend::components.partials.horizontal-nav') {{ strtoupper(App::getLocale()) }} @foreach (config('app.available_locales') as $locale => $title) {{ $title }} @endforeach @if(auth()->check()) @if(auth()->user()->user_type == 'user') @if(auth()->user()->is_subscribe == 0) {{__('frontend.subscribe')}} @else {{__('frontend.upgrade')}} @endif @endif {{-- @php $unreadCount = auth()->user()->unreadNotifications()->count(); @endphp @if($unreadCount > 0) {{ $unreadCount }} unread notifications @endif {{ __('Notifications') }} @forelse(auth()->user()->notifications->take(5) as $notification) {{ $notification->data['message'] ?? 'New notification' }} {{ $notification->created_at->diffForHumans() }} @empty {{ __('No new notifications') }} @endforelse {{ __('View all') }} --}} {{ auth()->user()->full_name ?? default_user_name() }} {{ auth()->user()->email }} {{__('frontend.my_watchlist')}} @if(getCurrentProfileSession('is_child_profile') == 0) {{ __('frontend.security_control') }} user()->is_parental_lock_enable ? 'checked' : '' }} > @if(empty(auth()->user()->pin)) {{ __('frontend.set_pin') }} @else {{ __('frontend.change_pins') }} @endif @endif {{__('messages.lbl_unlock_videos')}} {{__('frontend.profile')}} {{__('frontend.subscription_plan')}} {{__('frontend.account_setting')}} {{__('frontend.subscription_history')}} {{__('frontend.pay_per_view_transactions')}} {{__('frontend.logout')}} @else {{__('frontend.login')}} @endif