BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
public_html
/
app.imagivibe.com
/
resources
/
views
/
vendor
/
installer
📤 Upload
📝 New File
📁 New Folder
Close
Editing: requirements.blade.php
@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') <h4 class="mb-5 mt-0 font-body text-[26px]">{{ __('Server Requirements') }}</h4> @foreach ($requirements['requirements'] as $type => $requirement) <ul class="mb-6 text-start"> <li class="{{ $phpSupportInfo['supported'] ? 'text-green-500' : 'text-red-600' }} -mx-5 mb-6 flex items-center gap-4 rounded-xl px-5 py-2 shadow-[0_4px_10px_rgba(0,0,0,0.05)]"> <span> {{ strtoupper($type) }} @if ($type == 'php') {{ __('version') }} {{ $phpSupportInfo['minimum'] }} {{ __('required') }} @endif </span> @if ($type == 'php') <span class="ms-auto flex items-center gap-1"> {{ $phpSupportInfo['current'] }} @if ($phpSupportInfo['supported']) <svg class="stroke-green-500" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round" > <path d="M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"></path> <path d="M9 12l2 2l4 -4"></path> </svg> @else <svg class="stroke-red-600" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round" > <path d="M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"></path> <path d="M12 9v4"></path> <path d="M12 16v.01"></path> </svg> @endif </span> @endif </li> @foreach ($requirements['requirements'][$type] as $extention => $enabled) <li class="{{ $enabled ? 'success' : 'error' }} mb-2 flex items-center gap-4"> <span class="inline-block min-w-[65px]"> {{ $extention }} </span> <span class="grow"> <span class="inline-block h-px w-full bg-black bg-opacity-5"></span> </span> @if ($enabled) <svg class="stroke-green-500" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round" > <path d="M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"></path> <path d="M9 12l2 2l4 -4"></path> </svg> @else <svg class="stroke-red-600" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round" > <path d="M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"></path> <path d="M12 9v4"></path> <path d="M12 16v.01"></path> </svg> @endif </li> @endforeach </ul> @endforeach @if (!isset($requirements['errors']) && $phpSupportInfo['supported']) <a class="flex items-center justify-center gap-2 rounded-xl p-2 font-medium shadow-[0_4px_10px_rgba(0,0,0,0.05)] transition-all duration-300 hover:scale-105 hover:bg-black hover:text-white" href="{{ route('LaravelInstaller::environmentWizard') }}" > {{ __('Next') }} <svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round" > <path d="M9 6l6 6l-6 6"></path> </svg> </a> @endif @endsection
Save
Cancel