diff --git a/src/Models/Setting.php b/src/Models/Setting.php index 40c3233..d03c865 100644 --- a/src/Models/Setting.php +++ b/src/Models/Setting.php @@ -159,7 +159,7 @@ public static function lookup(string $key, $defaultValue = null) public static function getBranding() { - $brandingSettings = ['id' => 1, 'uuid' => 1]; + $brandingSettings = ['id' => 1, 'uuid' => 1, 'icon_url' => null, 'logo_url' => null]; $iconUuid = static::where('key', 'branding.icon_uuid')->value('value'); $logoUuid = static::where('key', 'branding.logo_uuid')->value('value'); $defaultTheme = static::where('key', 'branding.default_theme')->value('value');