@extends('layouts.install') @section('site_title', formatTitle([__('Installation'), config('info.software.name')])) @section('content')
@include('install.partials.menu')
{{ __('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('install.php_version'), '>=')) @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'])) {{ __('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
@endsection