@extends('admin.layouts.app')
@section('container', 'dashboard-container-md')
@section('section', d_trans('System'))
@section('title', d_trans('Information'))
@section('header_title', d_trans('System Information'))
@section('back', route('admin.system.index'))
@section('content')
-
{{ d_trans('Name') }}
{{ str_replace('_', ' ', ucfirst(config('system.item.alias'))) }}
-
{{ d_trans('Version') }}
{{ d_trans('v:version', ['version' => config('system.item.version')]) }}
-
{{ d_trans('Laravel Version') }}
{{ d_trans('v:version', ['version' => app()->version()]) }}
-
{{ d_trans('Timezone') }}
{{ config('app.timezone') }}
-
{{ d_trans('Software') }}
{{ $_SERVER['SERVER_SOFTWARE'] }}
-
{{ d_trans('PHP Version') }}
v{{ phpversion() }}
-
{{ d_trans('IP Address') }}
{{ $_SERVER['SERVER_ADDR'] }}
-
{{ d_trans('Protocol') }}
{{ $_SERVER['SERVER_PROTOCOL'] }}
-
{{ d_trans('HTTP Host') }}
{{ $_SERVER['HTTP_HOST'] }}
-
{{ d_trans('Port') }}
{{ $_SERVER['SERVER_PORT'] }}
-
{{ d_trans('Compiled views will be cleared') }}
-
{{ d_trans('Application cache will be cleared') }}
-
{{ d_trans('Route cache will be cleared') }}
-
{{ d_trans('Configuration cache will be cleared') }}
-
{{ d_trans('All Other Caches will be cleared') }}
-
{{ d_trans('Error logs file will be cleared') }}
@endsection