@php
try {
$logoPath = \App\Models\SystemSetting::get('logo_path');
$logoDarkPath = \App\Models\SystemSetting::get('logo_dark_path');
$siteName = \App\Models\SystemSetting::get('site_name', 'Appy');
$siteTagline = \App\Models\SystemSetting::get('site_tagline', 'Build native apps');
} catch (\Exception $e) {
$logoPath = null;
$logoDarkPath = null;
$siteName = 'Appy';
$siteTagline = 'Build native apps';
}
@endphp
@if($logoPath && $logoDarkPath)
 }})
@elseif($logoPath)
 }})
@elseif($logoDarkPath)
 }})
@else
{{ $siteName }}
{{ $siteTagline }}
@endif
© {{ date('Y') }}. {{ __('common.all_rights_reserved') }}