51 lines
2.1 KiB
PHP
51 lines
2.1 KiB
PHP
|
@extends('vendor.installer.layouts.master')
|
||
|
|
||
|
@section('template_title')
|
||
|
{{ trans('installer_messages.requirements.templateTitle') }}
|
||
|
@endsection
|
||
|
|
||
|
@section('title')
|
||
|
<i class="fa fa-check fa-fw" aria-hidden="true"></i>
|
||
|
{{ trans('installer_messages.requirements.title') }}
|
||
|
@endsection
|
||
|
|
||
|
@section('container')
|
||
|
|
||
|
@foreach($requirements['requirements'] as $type => $requirement)
|
||
|
<ul class="list">
|
||
|
<li class="list__item list__title {{ $phpSupportInfo['supported'] ? 'success' : 'error' }}">
|
||
|
<strong>@if ($type != 'php'){{ ucfirst($type) }}@else PHP @endif</strong>
|
||
|
@if($type == 'php')
|
||
|
<strong>
|
||
|
<small>
|
||
|
<?php /*(version {{ $phpSupportInfo['minimum'] }} required)*/ ?>
|
||
|
(7.1 - 8.x)
|
||
|
</small>
|
||
|
</strong>
|
||
|
<span class="float-right">
|
||
|
<strong>
|
||
|
{{ $phpSupportInfo['current'] }}
|
||
|
</strong>
|
||
|
<i class="fa fa-fw fa-{{ $phpSupportInfo['supported'] ? 'check-circle-o' : 'exclamation-circle' }} row-icon" aria-hidden="true"></i>
|
||
|
</span>
|
||
|
@endif
|
||
|
</li>
|
||
|
@foreach($requirements['requirements'][$type] as $extention => $enabled)
|
||
|
<li class="list__item {{ $enabled ? 'success' : 'error' }}">
|
||
|
{{ $extention }}
|
||
|
<i class="fa fa-fw fa-{{ $enabled ? 'check-circle-o' : 'exclamation-circle' }} row-icon" aria-hidden="true"></i>
|
||
|
</li>
|
||
|
@endforeach
|
||
|
</ul>
|
||
|
@endforeach
|
||
|
|
||
|
@if ( ! isset($requirements['errors']) && $phpSupportInfo['supported'] )
|
||
|
<div class="buttons">
|
||
|
<a class="button" href="{{ route('LaravelInstaller::permissions', [], false) }}">
|
||
|
{{ trans('installer_messages.requirements.next') }}
|
||
|
<i class="fa fa-angle-right fa-fw" aria-hidden="true"></i>
|
||
|
</a>
|
||
|
</div>
|
||
|
@endif
|
||
|
|
||
|
@endsection
|