@once @php function svgIcon($name) { $icons = [ 'dashboard' => '', 'transactions' => '', 'budget' => '', 'goals' => '', 'upgrade' => '', 'alerts' => '', 'forecast' => '', 'loans' => '', 'archive' => '', 'lending' => '', 'investments' => '', 'accounts' => '', 'reconcile' => '', 'chart_accts' => '', 'reports' => '', 'ai' => '', 'predictive' => '', 'family' => '', 'notif' => '', 'settings' => '', 'logout' => '', 'sun' => '', 'moon' => '', 'menu' => '', 'x' => '', ]; $d = $icons[$name] ?? ''; return '' . $d . ''; } @endphp @endonce