schneespur/resources/views/admin/dashboard.blade.php
Michael ee3dbba6cc Initial release v1.0.0
Schneespur — Open-source winter service documentation software (PWA + Admin).
GPS tracking via OwnTracks, weather data, photo evidence, and legally
compliant service records for winter maintenance operators.

License: AGPL-3.0-or-later
2026-05-17 13:33:51 +00:00

13 lines
451 B
PHP

<x-admin-layout>
<x-slot name="header">{{ __('admin.page_dashboard') }} <x-help-icon topic="jobs" /></x-slot>
<div class="mb-8">
<h2 class="text-2xl font-bold text-gray-900">{{ __('admin.welcome_message', ['name' => Auth::user()->name]) }}</h2>
</div>
@foreach ($widgets as $widget)
@if (!$widget['error'])
@include($widget['view'], ['widget' => $widget])
@endif
@endforeach
</x-admin-layout>