{{ __("Services") }} {{ __("All services that we installed on your server are here") }}
@foreach ($services as $service)
name . ".svg") }}" class="h-10 w-10" alt="" />
{{ $service->name }}:{{ $service->version }}
@include("services.partials.status", ["status" => $service->status])
{{ __("Actions") }} @if ($service->unit) @if ($service->status == \App\Enums\ServiceStatus::STOPPED) {{ __("Start") }} @endif @if ($service->status == \App\Enums\ServiceStatus::READY) {{ __("Stop") }} @endif {{ __("Restart") }} @endif
@endforeach