@vite(['resources/css/app.css', 'resources/js/app.js']) @php $globalSettings = \App\Models\Setting::whereIn('key', ['font_size', 'font_family', 'font_weight'])->pluck('value', 'key'); $fontFamily = $globalSettings['font_family'] ?? 'Inter'; $fontSize = $globalSettings['font_size'] ?? '32px'; $fontWeight = $globalSettings['font_weight'] ?? '700'; @endphp
{{ config('app.name') }} @if(session('selected_company_id')) @php $selectedCompany = \App\Models\Company::find(session('selected_company_id')); $userCompanyCount = Auth::user()->companies()->where('companies.active', true)->count(); @endphp @if($selectedCompany)
{{ $selectedCompany->name }} @if($userCompanyCount > 1) Switch @endif
@endif @endif

Notifications

View All
@php $notifications = \App\Models\Notification::where('user_id', Auth::id()) ->orderBy('created_at', 'desc') ->limit(5) ->get(); @endphp @forelse($notifications as $notification)

{{ $notification->title }}

{{ $notification->message }}

{{ $notification->created_at->diffForHumans() }}

@empty

No new notifications

@endforelse @if($notifications->count() > 0) @endif
{{ strtoupper(substr(Auth::user()->name, 0, 1)) }}
@csrf
@if (session('success')) @endif @if (session('error')) @endif @yield('content')
ESC

No matching pages found.

Try a different search term.

Start typing to search navigation links

to navigate to select
@stack('scripts')