Update InstanceService

pull/2895/head
Daniel Supernault 4 years ago
parent ad2db4aea7
commit 2fb916c22b
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7

@ -27,4 +27,16 @@ class InstanceService
return Instance::whereAutoCw(true)->pluck('domain')->toArray();
});
}
public static function software($domain)
{
$key = 'instances:software:' . strtolower($domain);
return Cache::remember($key, 86400, function() use($domain) {
$instance = Instance::whereDomain($domain)->first();
if(!$instance) {
return;
}
return $instance->software;
});
}
}

Loading…
Cancel
Save