Server IP : 66.29.132.124 / Your IP : 18.216.167.229 Web Server : LiteSpeed System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : wavevlvu ( 1524) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/wavevlvu/book24.ng/resources/views/vendor/installer/ |
Upload File : |
@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="buttons"> <a class="button" href="{{ route('LaravelInstaller::permissions') }}"> {{ trans('installer_messages.requirements.next') }} <i class="fa fa-angle-right fa-fw" aria-hidden="true"></i> </a> </div> @endif @endsection