This commit is contained in:
Saeed Vaziry
2023-07-02 12:47:50 +02:00
commit 5c72f12490
825 changed files with 41659 additions and 0 deletions

View File

@ -0,0 +1,18 @@
<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>