@php use App\Models\Profile; $profile = Profile::first(); // Ambil data dari tabel profile $institutionName = $profile?->nama_perusahaan ?? 'Nama Institusi'; $institutionLogo = $profile?->logo ? asset('storage/' . $profile->logo) : asset('images/default-logo.png'); @endphp