@php $hex = match ($theme_preset) { 'emerald' => '#10b981', 'blue' => '#3b82f6', 'violet' => '#8b5cf6', 'rose' => '#f43f5e', 'teal' => '#0d9488', 'orange' => '#f97316', 'custom' => $primary_color ?: '#f59e0b', default => '#f59e0b', // amber }; $logoUrl = null; if ($admin_logo) { if (is_array($admin_logo)) { $first = reset($admin_logo); if ($first instanceof \Livewire\Features\SupportFileUploads\TemporaryUploadedFile) { $logoUrl = $first->temporaryUrl(); } else { $logoUrl = asset('storage/' . $first); } } elseif (is_string($admin_logo)) { $logoUrl = asset('storage/' . $admin_logo); } } @endphp