18 lines
558 B
PHP
18 lines
558 B
PHP
<!-- Main Footer -->
|
|
<footer class="main-footer">
|
|
<!-- To the right -->
|
|
<div class="pull-right hidden-xs">
|
|
@if(config('admin.show_environment'))
|
|
<strong>Env</strong> {!! env('APP_ENV') !!}
|
|
@endif
|
|
|
|
|
|
|
|
@if(config('admin.show_version'))
|
|
<strong>Version</strong> {!! \Encore\Admin\Admin::VERSION !!}
|
|
@endif
|
|
|
|
</div>
|
|
<!-- Default to the left -->
|
|
<div style="color: #666666;text-align: center;">{!! config('app.owner') !!}</div>
|
|
</footer> |