{{ __('Services') }} {{ __('All services that we installed on your server are here') }} {{ __('Install Service') }} {{ __('PHPMyAdmin') }}
@foreach ($services as $service)
{{ $service->name }}:{{ $service->version }}
@include('livewire.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') }} @else {{ __('Uninstall') }} @endif
@endforeach