@extends('backend.settings.setting-layout') @section('title') {{ __('upgrade_guide') }} @endsection @section('website-settings')

{{ __('Application Information') }}

Current Version {{ $data['app_version'] }}

{{ __('Server Information') }}

Name {{ __('Current Version') }} {{ __('Required Version') }} {{ __('Status') }}
PHP version {{ $data['current_php_version'] }} {{ $data['minimum_php_version'] }} @if ($data['matched_php_requirement']) @else @endif
Laravel version {{ $data['current_laravel_version'] }} - @if ($data['matched_php_requirement']) @else @endif
MYSQL {{ $data['current_mysql_version'] }} {{ $data['minimum_mysql_version'] }} @if ($data['matched_mysql_requirement']) @else @endif

{{ __('php.ini Configuration') }}

Config Name {{ __('Current') }} {{ __('Recommended') }} {{ __('Status') }}
file_uploads {{ $data['php_ini']['file_uploads'] ? __('On') : __('Off') }} {{ __('On') }} @if ($data['php_ini']['file_uploads']) @else @endif
max_file_uploads {{ $data['php_ini']['max_file_uploads'] }} 20+ @if ($data['php_ini']['matched_upload_max_filesize']) @else @endif
upload_max_filesize {{ $data['php_ini']['upload_max_filesize'] }} 128M+ @if ($data['php_ini']['matched_post_max_size']) @else @endif
post_max_size {{ $data['php_ini']['post_max_size'] }} 128M+ @if ($data['php_ini']['file_uploads']) @else @endif
allow_url_fopen {{ $data['php_ini']['allow_url_fopen'] ? __('On') : __('Off') }} {{ __('On') }} @if ($data['php_ini']['allow_url_fopen']) @else @endif
max_execution_time {{ $data['php_ini']['max_execution_time'] }} 600+ @if ($data['php_ini']['max_execution_time'] == '-1' || $data['php_ini']['max_execution_time'] >= 600) @else @endif
max_input_time {{ $data['php_ini']['max_input_time'] }} 120+ @if ($data['php_ini']['max_input_time'] == '-1' || $data['php_ini']['max_input_time'] >= 120) @else @endif
max_input_vars {{ $data['php_ini']['max_input_vars'] }} 1000+ @if ($data['php_ini']['max_input_vars'] >= 1000) @else @endif
memory_limit {{ $data['php_ini']['memory_limit'] == '-1' ? __('Unlimited') : $data['php_ini']['memory_limit'] }} 256M+ @if ($data['php_ini']['matched_memory_limit']) @else @endif

{{ __('Extension Configuration') }}

@foreach ($data['extension_permissions'] as $index => $extension_permission) @endforeach
Extension Name {{ __('Status') }}
{{ $index }} @if ($extension_permission) @else @endif

{{ __('Filesystem Permissions') }}

@foreach ($data['fileSystemPermissions'] as $index => $filePath) @endforeach
Extension Name {{ __('Status') }}
{{ $index }} @if ($filePath) @else @endif
@endsection