{{ __("Installed PHPs") }} {{ __("You can see and manage your PHP installations") }}
@include('livewire.php.partials.install-new-php')
@if(count($phps) > 0)
@foreach($phps as $php)
PHP {{ $php->version }} @include('livewire.services.partials.status', ['status' => $php->status])
{{ __("Actions") }} {{----}} {{-- {{ __("Install Extension") }}--}} {{----}} {{ __("Edit php.ini") }} {{ __("Restart FPM") }} {{ __("Uninstall") }}
@endforeach
@include('livewire.php.partials.uninstall-php') @include('livewire.php.partials.update-php-ini') @else
{{ __("You don't have any PHP version installed!") }}
@endif