@extends("cms.layouts.frame") @section('content')
Laravel Version: {{ app()->version() }}
PHP Version: {{ phpversion() }}
@if(isset($_SERVER['SERVER_SOFTWARE']))
Server: @php print_r($_SERVER['SERVER_SOFTWARE']) @endphp
@endif
max_input_vars = {{ ini_get('max_input_vars') }}
upload_max_filesize = {{ ini_get('upload_max_filesize') }}
post_max_size = {{ ini_get('post_max_size') }}

max_execution_time = {{ ini_get('max_execution_time') }}
max_input_time = {{ ini_get('max_input_time') }}
memory_limit = {{ ini_get('memory_limit') }}

short_open_tag = {{ ini_get('short_open_tag') }}
open_basedir = {{ ini_get('open_basedir') }}
display_errors = {{ ini_get('display_errors') }}
default_charset = {{ ini_get('default_charset') }}
date.timezone = {{ ini_get('date.timezone') }}

{{ $robots }}

@endsection