schneespur/release/schneespur-1.0.2/resources/views/layouts/portal.blade.php
Michael 7288b93500 Release v1.0.2: diagnostic infrastructure core
Add neutral diagnostic framework for future reporting modules:
- DiagnosticReporterInterface, Registry, Manager, PayloadSanitizer
- Laravel exception hook in bootstrap/app.php
- Module permission declarations (requires_permissions in module.json)
- Core diagnostic report points (module boot/install/update failures)
- Module documentation update (moduldoku.md)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-05-18 16:54:11 +00:00

120 lines
7.3 KiB
PHP

<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="csrf-token" content="{{ csrf_token() }}">
<title>{{ __('portal.title') }} &mdash; {{ brand() }}</title>
<link rel="icon" href="{{ asset('favicon.svg') }}" type="image/svg+xml">
<link rel="preconnect" href="https://fonts.bunny.net">
<link href="https://fonts.bunny.net/css?family=figtree:400,500,600&display=swap" rel="stylesheet" />
@vite(['resources/css/app.css', 'resources/js/app.js'])
</head>
<body class="font-sans antialiased">
<div class="min-h-screen flex flex-col bg-gray-50">
{{-- Top navigation --}}
<header class="bg-white border-b border-gray-200" x-data="{ open: false }">
<div class="max-w-5xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex items-center justify-between h-16">
<div class="flex items-center space-x-6">
<a href="{{ route('portal.home') }}" class="text-xl font-bold text-gray-800 tracking-wide">
{{ brand() }}
</a>
<nav class="hidden sm:flex space-x-4">
<a href="{{ route('portal.home') }}"
class="px-3 py-2 rounded-md text-sm font-medium {{ request()->routeIs('portal.home') ? 'bg-gray-100 text-gray-900' : 'text-gray-600 hover:text-gray-900 hover:bg-gray-50' }}">
{{ __('portal.nav_home') }}
</a>
<a href="{{ route('portal.jobs.index') }}"
class="px-3 py-2 rounded-md text-sm font-medium {{ request()->routeIs('portal.jobs.*') ? 'bg-gray-100 text-gray-900' : 'text-gray-600 hover:text-gray-900 hover:bg-gray-50' }}">
{{ __('portal.nav_jobs') }}
</a>
<a href="{{ route('portal.reports.index') }}"
class="px-3 py-2 rounded-md text-sm font-medium {{ request()->routeIs('portal.reports.*') ? 'bg-gray-100 text-gray-900' : 'text-gray-600 hover:text-gray-900 hover:bg-gray-50' }}">
{{ __('portal.nav_reports') }}
</a>
<a href="{{ route('portal.notifications.index') }}"
class="px-3 py-2 rounded-md text-sm font-medium {{ request()->routeIs('portal.notifications.*') ? 'bg-gray-100 text-gray-900' : 'text-gray-600 hover:text-gray-900 hover:bg-gray-50' }}">
{{ __('portal.nav_notifications') }}
</a>
<a href="{{ route('portal.profile.edit') }}"
class="px-3 py-2 rounded-md text-sm font-medium {{ request()->routeIs('portal.profile.*') ? 'bg-gray-100 text-gray-900' : 'text-gray-600 hover:text-gray-900 hover:bg-gray-50' }}">
{{ __('portal.nav_profile') }}
</a>
</nav>
</div>
<div class="hidden sm:flex items-center space-x-4">
<span class="text-sm text-gray-600">{{ auth('customer')->user()->name }}</span>
<form method="POST" action="{{ route('portal.logout') }}">
@csrf
<button type="submit" class="text-sm text-gray-500 hover:text-gray-700">
{{ __('portal.logout') }}
</button>
</form>
</div>
{{-- Mobile menu button --}}
<button @click="open = !open" class="sm:hidden p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100">
<svg class="h-6 w-6" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path x-show="!open" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
<path x-show="open" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" style="display: none;" />
</svg>
</button>
</div>
</div>
{{-- Mobile menu --}}
<div x-show="open" x-transition class="sm:hidden border-t border-gray-200" style="display: none;">
<div class="px-4 py-3 space-y-1">
<a href="{{ route('portal.home') }}" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:bg-gray-50">
{{ __('portal.nav_home') }}
</a>
<a href="{{ route('portal.jobs.index') }}" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:bg-gray-50">
{{ __('portal.nav_jobs') }}
</a>
<a href="{{ route('portal.reports.index') }}" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:bg-gray-50">
{{ __('portal.nav_reports') }}
</a>
<a href="{{ route('portal.notifications.index') }}" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:bg-gray-50">
{{ __('portal.nav_notifications') }}
</a>
<a href="{{ route('portal.profile.edit') }}" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:bg-gray-50">
{{ __('portal.nav_profile') }}
</a>
</div>
<div class="border-t border-gray-200 px-4 py-3">
<div class="text-sm text-gray-600 mb-2">{{ auth('customer')->user()->name }}</div>
<form method="POST" action="{{ route('portal.logout') }}">
@csrf
<button type="submit" class="block w-full text-left px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:bg-gray-50">
{{ __('portal.logout') }}
</button>
</form>
</div>
</div>
</header>
{{-- Page content --}}
<main class="flex-1 py-8">
<div class="max-w-5xl mx-auto px-4 sm:px-6 lg:px-8">
<x-flash-message />
{{ $slot }}
</div>
</main>
{{-- Footer --}}
<footer class="border-t border-gray-200 bg-white">
<div class="max-w-5xl mx-auto px-4 sm:px-6 lg:px-8 py-4">
<p class="text-xs text-gray-400 text-center">
{{ brand() }} &middot; {{ __('portal.footer_portal') }}
</p>
</div>
</footer>
</div>
</body>
</html>