@extends('vendor.installer.layouts.master')
@section('template_title')
{{ trans('installer_messages.requirements.templateTitle') }}
@endsection
@section('title')
{{ trans('installer_messages.requirements.title') }}
@endsection
@section('container')
@foreach($requirements['requirements'] as $type => $requirement)
-
{{ ucfirst($type) }}
@if($type == 'php')
(version {{ $phpSupportInfo['minimum'] }} required)
{{ $phpSupportInfo['current'] }}
@endif
@foreach($requirements['requirements'][$type] as $extention => $enabled)
-
{{ $extention }}
@endforeach
@endforeach
@if(! $dbSupportInfo['current'])
-
DB
-
Version {{ $dbSupportInfo['minimum'] }} required
-
{{ $dbSupportInfo['driver'] }}
@else
-
DB
(Driver {{ $dbSupportInfo['driver'] }})
{{ $dbSupportInfo['current'] }}
-
Version {{ $dbSupportInfo['minimum'] }} required
@endif
@if ( ! isset($requirements['errors']) && $phpSupportInfo['supported'] && ($dbSupportInfo['supported'] || ! $dbSupportInfo['current']))
@if(isset($requirements['warnings']))
{{ trans('installer_messages.requirements.warning') }}
{{ trans('installer_messages.requirements.warningNotExistPhpFunction') }}
@endif
@endif
@endsection