mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 15:44:11 -08:00
32 lines
660 B
PHP
32 lines
660 B
PHP
|
@extends('layouts/default')
|
||
|
|
||
|
{{-- Page title --}}
|
||
|
@section('title')
|
||
|
PHP Info
|
||
|
@parent
|
||
|
@stop
|
||
|
|
||
|
@section('header_right')
|
||
|
<a href="{{ route('settings.index') }}" class="btn btn-default"> {{ trans('general.back') }}</a>
|
||
|
@stop
|
||
|
|
||
|
|
||
|
{{-- Page content --}}
|
||
|
@section('content')
|
||
|
@if (config('app.debug')=== true)
|
||
|
<div class="row">
|
||
|
<div class="col-md-12">
|
||
|
<?php phpinfo(); ?>
|
||
|
</div> <!-- /.col-md-12-->
|
||
|
</div> <!-- /.row-->
|
||
|
|
||
|
@else
|
||
|
<div class="col-md-12">
|
||
|
<div class="alert alert-danger">
|
||
|
This information is only available when debug is enabled.
|
||
|
</div>
|
||
|
@endif
|
||
|
|
||
|
|
||
|
@stop
|