mirror of
https://github.com/sp-tarkov/forge.git
synced 2025-02-13 04:30:41 -05:00
20 lines
376 B
PHP
20 lines
376 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Services;
|
||
|
|
||
|
use App\Models\SptVersion;
|
||
|
|
||
|
class LatestSptVersionService
|
||
|
{
|
||
|
protected ?SptVersion $version = null;
|
||
|
|
||
|
public function getLatestVersion(): ?SptVersion
|
||
|
{
|
||
|
if ($this->version === null) {
|
||
|
$this->version = SptVersion::select('version')->orderByDesc('version')->first();
|
||
|
}
|
||
|
|
||
|
return $this->version;
|
||
|
}
|
||
|
}
|