schneespur/release/schneespur-1.0.2/modules/example/resources/views/widgets/example-card.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

13 lines
698 B
PHP

<div class="bg-white overflow-hidden shadow-sm sm:rounded-lg p-6">
<div class="flex items-center space-x-3">
<div class="flex-shrink-0">
<svg class="h-8 w-8 text-green-500" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" d="M9 12.75 11.25 15 15 9.75M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z" />
</svg>
</div>
<div>
<h3 class="text-sm font-medium text-gray-900">Example Module Active</h3>
<p class="text-xs text-gray-500">Reference module loaded successfully.</p>
</div>
</div>
</div>