12848091a2
Update to Laravel 9 and PHP 8+ Co-authored-by: B.Fatih KOZ <fatih.koz@gmail.com>
24 lines
536 B
PHP
24 lines
536 B
PHP
<?php
|
|
|
|
namespace App\Http\Composers;
|
|
|
|
use App\Contracts\Composer;
|
|
use App\Services\VersionService;
|
|
use Illuminate\View\View;
|
|
|
|
class VersionComposer extends Composer
|
|
{
|
|
protected VersionService $versionSvc;
|
|
|
|
public function __construct(VersionService $versionSvc)
|
|
{
|
|
$this->versionSvc = $versionSvc;
|
|
}
|
|
|
|
public function compose(View $view)
|
|
{
|
|
$view->with('version', $this->versionSvc->getCurrentVersion(false));
|
|
$view->with('version_full', $this->versionSvc->getCurrentVersion(true));
|
|
}
|
|
}
|