mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-02 06:26:16 +00:00
init
This commit is contained in:
@ -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>
|
Reference in New Issue
Block a user