@extends('admin.layouts.grid')
@section('section', admin_trans('System'))
@section('title', admin_trans('System Information'))
@section('container', 'container-max-lg')
@section('content')
-
{{ admin_trans('Name') }}
{{ str_replace('_', ' ', $system->application->name) }}
-
{{ admin_trans('Version') }}
v{{ $system->application->version }}
-
{{ admin_trans('Laravel Version') }}
v{{ $system->application->laravel }}
-
{{ admin_trans('Timezone') }}
{{ $system->application->timezone }}
-
{{ admin_trans('Software') }}
{{ $system->server->SERVER_SOFTWARE }}
-
{{ admin_trans('PHP Version') }}
v{{ $system->server->php }}
-
{{ admin_trans('IP Address') }}
{{ $system->server->SERVER_ADDR }}
-
{{ admin_trans('Protocol') }}
{{ $system->server->SERVER_PROTOCOL }}
-
{{ admin_trans('HTTP Host') }}
{{ $system->server->HTTP_HOST }}
-
{{ admin_trans('Port') }}
{{ $system->server->SERVER_PORT }}
-
{{ admin_trans('Compiled views will be cleared') }}
-
{{ admin_trans('Application cache will be cleared') }}
-
{{ admin_trans('Route cache will be cleared') }}
-
{{ admin_trans('Configuration cache will be cleared') }}
-
{{ admin_trans('All Other Caches will be cleared') }}
-
{{ admin_trans('Error logs file will be cleared') }}
@endsection