@extends('admin.layouts.app')
@section('panel')
@lang('Application Details')
@lang('Explore key details about your application, including its name, version, localization info, and more.')
-
@lang('Application Name')
{{ $systemDetails['name'] }}
-
@lang('Application Version')
{{ $systemDetails['web_version'] }}
-
@lang('OvoPanel Version')
{{ $systemDetails['admin_panel_version'] }}
-
@lang('Laravel Version')
{{ $laravelVersion }}
-
@lang('Timezone')
{{ @$timeZone }}
-
@lang('Default Language')
{{ config('app.locale') }}
-
@lang('Maintenance Mode')
@if (gs('maintenance_mode') == Status::ENABLE)
@lang('Enable')
@else
@lang('Disable')
@endif
@lang('Server Details')
@lang('Explore key details about your server, including its php version, database info, server info and more.')
-
@lang('PHP Version')
{{ phpversion() }}
-
@lang('Database')
{{ DB::connection()->getPDO()->getAttribute(PDO::ATTR_DRIVER_NAME) }}
{{ DB::connection()->getPDO()->getAttribute(PDO::ATTR_SERVER_VERSION) }}
-
@lang('Server Software')
{{ @$serverDetails['SERVER_SOFTWARE'] }}
-
@lang('Server IP Address')
{{ @$serverDetails['SERVER_ADDR'] }}
-
@lang('Server Protocol')
{{ @$serverDetails['SERVER_PROTOCOL'] }}
-
@lang('HTTP Host')
{{ @$serverDetails['HTTP_HOST'] }}
-
@lang('Server Port')
{{ @$serverDetails['SERVER_PORT'] }}
@lang('App Information')
@lang('Explore key details about your mobile app, including its version and more.')
-
@lang('App Version')
{{ $systemDetails['mobile_app_version'] }}
-
@lang('Flutter Version')
{{ $systemDetails['flutter_version'] }}
-
@lang('iOS Support')
@lang('Yes')
-
@lang('Minimum Android Version')
{{ $systemDetails['android_version'] }}
-
@lang('Minimum Apple Version')
{{ $systemDetails['ios_version'] }}
@lang('Clear Cache')
@lang('If you clear the cache, your application will be optimized and ready to run smoothly.')
@lang('Clear Now')
-
@lang('Compiled views will be cleared')
-
@lang('Application cache will be cleared')
-
@lang('Route cache will be cleared')
-
@lang('Configuration cache will be cleared')
-
@lang('Compiled services and packages files will be removed')
-
@lang('Caches will be cleared')
@endsection
@push('style')
@endpush