@extends('vendor.installer.layouts.master') @section('title', trans('installer_messages.requirements.title')) @section('container')

Requirements Check

@if (isset($requirements['errors']) || $phpSupportInfo['supported'] != 'success')
Please fix the below error and the click Check Requirements Again
@endif
PHP Version >= {{ $phpSupportInfo['minimum'] }}
{!! $phpSupportInfo['supported'] ? ' ' : ' ' !!}
@foreach ($requirements['requirements'] as $extention => $enabled)
{{ $extention }}
{!! $enabled ? ' ' : ' ' !!}
@endforeach
60% Complete
@if (!isset($requirements['errors']) && $phpSupportInfo['supported'] == 'success') @else @endif
@stop