vito/resources/views/livewire/php/partials/install-new-php.blade.php
Saeed Vaziry 5c72f12490 init
2023-07-02 12:47:50 +02:00

19 lines
591 B
PHP

<x-dropdown>
<x-slot name="trigger">
<x-primary-button>
{{ __("Install") }}
<x-heroicon-m-chevron-down class="w-4 ml-1" />
</x-primary-button>
</x-slot>
<x-slot name="content">
@foreach(config('core.php_versions') as $php)
@if(!$phps->whereIn('version', $php)->first() && $php !== 'none')
<x-dropdown-link class="cursor-pointer" wire:click="install('{{ $php }}')">
PHP {{ $php }}
</x-dropdown-link>
@endif
@endforeach
</x-slot>
</x-dropdown>