@section('site_title', formatTitle([__('Installation'), config('info.software.name')]))
{{ __('Requirements') }}
@foreach($results['extensions'] as $type => $extension)
{{ mb_strtoupper($type) }} @if($type == 'php') {{ config('install.php_version') }}+ @endif
@if($type == 'php') @if(version_compare(PHP_VERSION, config('installer.php_version')) >= 0) @include('icons.checkmark', ['class' => 'text-success width-4 height-4 fill-current']) @else @include('icons.close', ['class' => 'text-danger width-4 height-4 fill-current']) @endif @endif
@foreach($extension as $name => $enabled)
{{ $name }}
@if($enabled) @include('icons.checkmark', ['class' => 'text-success width-4 height-4 fill-current']) @else @include('icons.close', ['class' => 'text-danger width-4 height-4 fill-current']) @endif
@endforeach
@endforeach
@if(isset($results['errors']) == false) {{ __('Next') }} @include((__('lang_dir') == 'rtl' ? 'icons.chevron-left' : 'icons.chevron-right'), ['class' => 'width-3 height-3 fill-current '.(__('lang_dir') == 'rtl' ? 'mr-2' : 'ml-2')]) @endif