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