Files
Atomcms-edit/resources/views/filament/components/commandocentrum/clothing-status.blade.php
T
root c6246615bc refactor: extract inline HTML rendering to Blade components
- Create 12 Blade components for Commandocentrum views
- Reduce Commandocentrum from 1679 to 1192 lines (-29%)
- Move server-info, hotel-status, alert-form, emulator-info/settings/status
- Move nitro-settings/status, backups-list, clothing-status, staff-activity, update-history
- Improve separation of concerns between controller logic and view rendering
2026-05-19 21:24:12 +02:00

9 lines
401 B
PHP
Executable File

@props(['clothingCount'])
<div style="display:flex;gap:16px;align-items:center;">
<div style="background:#f8fafc;border-radius:12px;padding:16px;border:1px solid #e2e8f0;flex:1;">
<div style="font-size:12px;color:#64748b;margin-bottom:4px;">Kleding Items</div>
<div style="font-size:24px;font-weight:700;color:#1e293b;">{{ number_format($clothingCount) }}</div>
</div>
</div>