migrate to gtea from bistbucket
This commit is contained in:
56
resources/views/vendor/installer/requirements.blade.php
vendored
Normal file
56
resources/views/vendor/installer/requirements.blade.php
vendored
Normal file
@@ -0,0 +1,56 @@
|
||||
@extends('vendor.installer.layouts.master')
|
||||
|
||||
@section('template_title')
|
||||
{{ trans('installer_messages.requirements.templateTitle') }}
|
||||
@endsection
|
||||
|
||||
@section('title')
|
||||
<i class="fa fa-list-ul 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>{{ ucfirst($type) }}</strong>
|
||||
@if($type == 'php')
|
||||
<strong>
|
||||
<small>
|
||||
(version {{ $phpSupportInfo['minimum'] }} required)
|
||||
</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="center-flex">
|
||||
<div class="btn-wrapper">
|
||||
<div class="btn-glow"></div>
|
||||
<a href="{{ route('LaravelInstaller::verify') }}" class="btn" role="button" title="payment">
|
||||
{{ __('Verify Your Code') }}
|
||||
<svg aria-hidden="true" viewBox="0 0 10 10" height="10" width="10" fill="none" class="arrow">
|
||||
<path d="M0 5h7" class="line1"></path>
|
||||
<path d="M1 1l4 4-4 4" class="line2"></path>
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
|
||||
@endsection
|
||||
Reference in New Issue
Block a user