2023-09-21 15:48:31 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\View\Components\Status;
|
|
|
|
|
|
|
|
use App\Models\Service;
|
|
|
|
use Closure;
|
|
|
|
use Illuminate\Contracts\View\View;
|
|
|
|
use Illuminate\View\Component;
|
|
|
|
|
|
|
|
class Services extends Component
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Create a new component instance.
|
|
|
|
*/
|
|
|
|
public function __construct(
|
|
|
|
public Service $service,
|
|
|
|
public string $complexStatus = 'exited',
|
2024-02-16 21:15:18 +00:00
|
|
|
public bool $showRefreshButton = true
|
2023-09-21 15:48:31 +00:00
|
|
|
) {
|
2024-02-16 20:56:38 +00:00
|
|
|
$this->complexStatus = $service->status();
|
2023-09-21 15:48:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the view / contents that represent the component.
|
|
|
|
*/
|
|
|
|
public function render(): View|Closure|string
|
|
|
|
{
|
|
|
|
return view('components.status.services');
|
|
|
|
}
|
|
|
|
}
|