7077fff3b3
- Convert all remaining static \$modelLabel/\$pluralModelLabel to getter methods with __() (AppointmentResource, WorkOrderResource, MasterResource, ServiceTemplateResource, LaborResource, and 33 others) - Safe blade wrap v2 (37 files, 201 wraps): fixed the regex to not match `->`, `=>`, `!<` — previous aggressive pass broke @if directives - Bulk-translate lowercase model-label keys (programări, fișe lucru, tehnicieni, șabloane servicii, norme-ore, etc.) — these were the RO strings appearing in page titles/breadcrumbs - Add human RU/EN for mechanic-kpi (Mecanic/Lucrări/Norma ore/etc.) and calendar-board words Tests 306 green. Blade compiles cleanly. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
13 lines
564 B
PHP
13 lines
564 B
PHP
<div class="space-y-3">
|
|
<div class="flex justify-center bg-white rounded-lg p-4 border border-gray-200 dark:border-gray-700">
|
|
<div style="max-width: 240px;">{!! $svg !!}</div>
|
|
</div>
|
|
<div class="text-center">
|
|
<div class="text-sm font-semibold">{{ $part->name }}</div>
|
|
@if ($part->article)
|
|
<div class="text-xs text-gray-500 dark:text-gray-400 font-mono">{{ $part->article }}</div>
|
|
@endif
|
|
<div class="text-xs text-gray-400 mt-1">{{ __('Payload:') }} <code>{{ $payload }}</code></div>
|
|
</div>
|
|
</div>
|