@extends('admin.layouts.main') @section('panel')

{{__($setTitle)}}

    @foreach(getArrayValue($applicationInfo, 'application') as $key => $filePath)
  1. {{ replaceInputTitle($key) }}
    {{ $filePath }}
  2. @endforeach
  3. @lang('Document Root Folder')
    {{ $server_detail['DOCUMENT_ROOT'] }}
  4. @lang('PHP Version')
    {{ phpversion() }}
  5. @lang('Laravel Version')
    {{ app()->version() }}
  6. @lang('IP Address')
    {{ $server_detail['REMOTE_ADDR'] ?? ''}}
  7. @lang('Server Host')
    {{ $server_detail['HTTP_HOST'] }}

{{ __('PHP Extension Access Management') }}

    @foreach(getArrayValue($applicationInfo, 'requirements.php') as $key => $filePath)
  1. {{ $filePath }}
  2. @endforeach
{{ __('Access Control for Files and Folders') }}
@foreach(getArrayValue($applicationInfo, 'permissions') as $key => $filePath) @endforeach
{{ __('Files and Folders') }} {{ __('Permissions') }} {{ __('Status') }}
{{ $key }} {{ $filePath }}
@endsection