@extends('admin.layouts.master') @section('title', __('static.systems.about')) @section('content')
@foreach ($prerequisites['configurations'] as $name => $config) @endforeach
{{ __('static.systems.config_name') }} {{ __('static.systems.current') }} {{ __('static.systems.recommended') }} {{ __('static.systems.status') }}
{{ ucfirst(str_replace('_', ' ', $name)) }} {{ $config['current'] }} {{ $config['recommended'] }} {{ $config['status'] ?? 'N/A' }}
@foreach ($prerequisites['extensions'] as $name => $config) @endforeach
{{ __('static.systems.extension_name') }} {{ __('static.systems.status') }}
{{ ucfirst($name) }} {{ $config['status'] ?? 'N/A' }}
@foreach ($prerequisites['version'] as $name => $config) @endforeach
{{ __('static.systems.name') }} {{ __('static.systems.current') }} {{ __('static.systems.recommended') }}
{{ ucfirst($name) }} {{ $config['current'] }} {{ $config['recommended'] }}
@foreach ($prerequisites['file_permissions'] as $item => $config) @endforeach
{{ __('static.systems.file_folder') }} {!! __('static.systems.status') !!}
{{ $config['display_name'] }} {{ $config['status'] ?? 'N/A' }}
@endsection