Give each specialty module a distinct Heroicon-style icon.
Deploy Ladill Care / deploy (push) Successful in 1m2s

Icon names live on the specialty catalog; SVG paths resolve through a shared map and render in sidebar, dashboard, settings, and the specialty shell.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-07-18 18:30:14 +00:00
co-authored by Cursor
parent 61b901095f
commit 1e00c31b8b
12 changed files with 200 additions and 23 deletions
@@ -3,9 +3,12 @@
title="{{ $definition['label'] ?? ucfirst($moduleKey) }}"
description="{{ $definition['description'] ?? 'Module settings and service prices for '.$organization->name.'.' }}"
>
<p class="text-sm">
<a href="{{ route('care.settings.modules') }}" class="font-medium text-indigo-600 hover:text-indigo-800"> Specialty modules</a>
</p>
<div class="flex items-center gap-3">
<x-care.specialty-icon :module="$moduleKey" boxed />
<p class="text-sm">
<a href="{{ route('care.settings.modules') }}" class="font-medium text-indigo-600 hover:text-indigo-800"> Specialty modules</a>
</p>
</div>
@if (session('success'))
<p class="rounded-lg bg-emerald-50 px-3 py-2 text-sm text-emerald-800">{{ session('success') }}</p>