@php
$iconSvgs = [
'dashboard' => '',
'building' => '',
'gift' => '',
'credit-card' => '',
'users' => '',
'chart-bar' => '',
'chart-trending-up' => '',
'clipboard-check' => '',
'lifebuoy' => '',
'chart-line' => '',
'cog' => '',
'cog-6-tooth' => '',
'document-text' => '',
'envelope' => '',
'inbox' => '',
'shield-check' => '',
'default' => '',
];
$svg = $iconSvgs[$name] ?? $iconSvgs['default'];
@endphp