@if(request()->routeIs('dashboard', 'reports.general')) @endif @fluxAppearance @vite(['resources/css/app.css', 'resources/js/app.js']) @livewireStyles
{{ config('app.name', 'Computer Service') }}
IT Helpdesk & Service Desk
{{ mb_substr(auth()->user()->name, 0, 1) }}

{{ auth()->user()->name }}

{{ auth()->user()->role->label() }}

@csrf
{{ $breadcrumb ?? 'Рабочая область' }}

Последние уведомления

Все
@forelse(auth()->user()->notifications()->latest()->limit(10)->get() as $notification)

{{ $notification->data['title'] ?? 'Уведомление' }}

{{ $notification->data['message'] ?? '' }}

@empty

Новых уведомлений нет.

@endforelse
Профиль
@if(session()->has('success'))
{{ session('success') }}
@endif @if(session()->has('error'))
{{ session('error') }}
@endif {{ $slot }}
@livewireScripts @fluxScripts @stack('scripts')