@extends('vendor.installer.layouts.master')
@section('template_title')
{{ trans('installer_messages.requirements.templateTitle') }}
@endsection
@section('title')
{{ trans('installer_messages.requirements.title') }}
@endsection
@section('container')
{{ __('Server Requirements') }}
@foreach ($requirements['requirements'] as $type => $requirement)
-
{{ strtoupper($type) }}
@if ($type == 'php')
{{ __('version') }} {{ $phpSupportInfo['minimum'] }} {{ __('required') }}
@endif
@if ($type == 'php')
{{ $phpSupportInfo['current'] }}
@if ($phpSupportInfo['supported'])
@else
@endif
@endif
@foreach ($requirements['requirements'][$type] as $extention => $enabled)
-
{{ $extention }}
@if ($enabled)
@else
@endif
@endforeach
@if (!isset($requirements['errors']) && $phpSupportInfo['supported'])
{{ __('Next') }}
@endif
@endforeach
@endsection