@extends('installer::install') @section('step')

Checking the server requirements

@foreach(config('installer.server') as $check)
{{ $check['name'] }} @if(in_array('version', $check, true)) ($check['version']) @endif
@if(($check['check']['type'] === 'php' && PHP_VERSION_ID < $check['check']['value']) || ($check['check']['type'] === 'extension' && !extension_loaded($check['check']['value']))) @else @endif
@endforeach
@if($result) Next step @else Reload @endif
@endsection