@php $headerBgColor = \App\Http\Helpers\SettingHelper::get('sidebar_bg_color', '#ffffff'); $headerBgColorDark = \App\Http\Helpers\SettingHelper::get('sidebar_bg_color_dark', '#111827'); @endphp @php $_sidebarLogo = \App\Http\Helpers\SettingHelper::get('sidebar_logo', 'dynaweb4/img/logo.png'); $_sidebarLogoUrl = str_starts_with($_sidebarLogo, 'dynaweb4/') ? asset($_sidebarLogo) : Storage::url($_sidebarLogo); @endphp Searching... No results found Type at least 2 characters to search @php use App\Models\Backend\ContentFeedbackMain; $pendingCount = ContentFeedbackMain::whereIn('status', ['PENDING', 'READ'])->count(); @endphp Notification @if($pendingCount > 0) @php $pendingFeedbacks = ContentFeedbackMain::whereIn('status', ['PENDING', 'READ']) ->orderBy('created_at', 'desc') ->take(5) ->get(); @endphp @foreach($pendingFeedbacks as $fb) {{ $fb->ticket_no }} {{ $fb->type }} {{ $fb->created_at->format('d M Y, h:i A') }} Send by: {{ $fb->name }} @endforeach @else No new notifications @endif View All Notification @php use App\Models\Backend\BackendUser; $user = BackendUser::find(auth()->id()); @endphp @if($user->profile_picture) @else {{ strtoupper(substr($user->first_name ?? $user->username ?? 'U', 0, 1)) }} @endif {{ $user->last_name ?? '-' }} {{ ($user?->first_name ?? '-') . ' ' . ($user?->last_name ?? '-') }} {{ $user->email ?? '-' }} Edit profile @csrf Sign out
No new notifications