@php $thumb = asset('img/thumb.jpg'); if (isset($app_settings["thumb"]) && !empty($app_settings["thumb"])) { $thumb = url("storage/branding/" . $app_settings["thumb"]); } $hide_footer_disclaimer = true; if (!empty(Auth::user()->branding)) { $branding = json_decode(Auth::user()->branding); if (!empty($branding->hide_footer_disclaimer)) $hide_footer_disclaimer = false; if (!empty($branding->preloader_image)) $thumb = asset($branding->preloader_image); } @endphp