@php use Illuminate\Support\Facades\Auth; use App\Models\Profile; $user = Auth::user(); $profile = Profile::first(); $namaInstitusi = $profile?->nama_perusahaan ?? 'Nama Institusi'; $logo = $profile?->logo ? asset('storage/' . $profile->logo) : asset('images/default-logo.png'); @endphp