@extends('layouts/layoutMaster') @section('title', __('System Status')) @section('content') @php $breadcrumbs = [ ['name' => __('Dashboard'), 'url' => route('superAdmin.dashboard')], ['name' => __('System Status'), 'url' => ''] ]; @endphp
{{ __('Application Info') }}
  • {{ __('Application Name') }} {{ $systemInfo['application']['name'] }}
  • {{ __('Version') }} v{{ $systemInfo['application']['version'] }}
  • {{ __('Laravel Version') }} {{ $systemInfo['application']['laravel_version'] }}
  • {{ __('Environment') }} {{ ucfirst($systemInfo['application']['environment']) }}
  • {{ __('Debug Mode') }} @if($systemInfo['application']['debug_mode']) {{ __('Enabled') }} @else {{ __('Disabled') }} @endif
  • {{ __('Timezone') }} {{ $systemInfo['application']['timezone'] }}
  • {{ __('Locale') }} {{ strtoupper($systemInfo['application']['locale']) }}
{{ __('Server Info') }}
  • {{ __('PHP Version') }} {{ $systemInfo['server']['php_version'] }}
  • {{ __('Server Software') }} {{ $systemInfo['server']['server_software'] }}
  • {{ __('Operating System') }} {{ $systemInfo['server']['server_os'] }}
  • {{ __('Server Time') }} {{ $systemInfo['server']['server_time'] }}
  • {{ __('Max Execution Time') }} {{ $systemInfo['server']['max_execution_time'] }}
  • {{ __('Memory Limit') }} {{ $systemInfo['server']['memory_limit'] }}
  • {{ __('Upload Max Filesize') }} {{ $systemInfo['server']['upload_max_filesize'] }}
  • {{ __('Post Max Size') }} {{ $systemInfo['server']['post_max_size'] }}
{{ __('Database Info') }}
  • {{ __('Driver') }} {{ $systemInfo['database']['driver'] }}
  • {{ __('Version') }} {{ $systemInfo['database']['version'] }}
  • {{ __('Database Name') }} {{ $systemInfo['database']['database'] }}
  • {{ __('Host') }} {{ $systemInfo['database']['host'] }}
  • {{ __('Port') }} {{ $systemInfo['database']['port'] }}
{{ __('Drivers Configuration') }}
  • {{ __('Cache Driver') }} {{ $systemInfo['drivers']['cache'] }}
  • {{ __('Queue Driver') }} {{ $systemInfo['drivers']['queue'] }}
  • {{ __('Session Driver') }} {{ $systemInfo['drivers']['session'] }}
  • {{ __('Broadcasting Driver') }} {{ $systemInfo['drivers']['broadcasting'] ?? 'null' }}
  • {{ __('Mail Driver') }} {{ $systemInfo['drivers']['mail'] }}
  • {{ __('Filesystem') }} {{ $systemInfo['drivers']['filesystem'] }}
{{ __('Services Status') }}
    @foreach($systemInfo['services'] as $service => $status)
  • {{ ucfirst($service) }}
    @if($status['status']) {{ __('OK') }} @else {{ __('N/A') }} @endif {{ $status['message'] }}
  • @endforeach
{{ __('Storage Permissions') }}
  • {{ __('Storage Directory') }} @if($systemInfo['storage']['storage_writable']) {{ __('Writable') }} @else {{ __('Not Writable') }} @endif
  • {{ __('Storage Link') }} @if($systemInfo['storage']['storage_link_exists']) {{ __('Exists') }} @else {{ __('Missing') }} @endif
  • {{ __('Logs Directory') }} @if($systemInfo['storage']['logs_writable']) {{ __('Writable') }} @else {{ __('Not Writable') }} @endif
  • {{ __('Cache Directory') }} @if($systemInfo['storage']['cache_writable']) {{ __('Writable') }} @else {{ __('Not Writable') }} @endif
  • {{ __('Sessions Directory') }} @if($systemInfo['storage']['sessions_writable']) {{ __('Writable') }} @else {{ __('Not Writable') }} @endif
  • {{ __('Views Directory') }} @if($systemInfo['storage']['views_writable']) {{ __('Writable') }} @else {{ __('Not Writable') }} @endif
{{ __('PHP Extensions') }}
@foreach($systemInfo['php_extensions'] as $extension => $loaded)
@if($loaded) @else @endif {{ $extension }}
@endforeach
{{ __('Modules') }}
{{ $systemInfo['modules']['enabled'] }} {{ __('Enabled') }} {{ $systemInfo['modules']['disabled'] }} {{ __('Disabled') }}
@foreach($systemInfo['modules']['list'] as $module)
@if($module['enabled']) @else @endif {{ $module['name'] }}
@endforeach
@endsection