@php
use App\Models\Setting;
use Illuminate\Support\Facades\Storage;
$appLogo = Setting::get('app_logo');
$companyName = Setting::get('company_name', 'Kenya Import Tax Simulator');
@endphp
@if($appLogo && Storage::disk('public')->exists($appLogo))
@else
{{ $companyName }}
@endif