@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 pt-1'])
@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 pt-1'])
@endif
@endforeach
@endforeach