20 lines
643 B
PHP
20 lines
643 B
PHP
<!-- Main Footer -->
|
|
<footer class="main-footer">
|
|
<!-- To the right -->
|
|
<div class="pull-right hidden-xs">
|
|
<?php if(config('admin.show_environment')): ?>
|
|
<strong>Env</strong> <?php echo config('app.env'); ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
<?php if(config('admin.show_version')): ?>
|
|
<strong>Version</strong> <?php echo \Encore\Admin\Admin::VERSION; ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
<!-- Default to the left -->
|
|
<strong>Powered by <a href="https://github.com/z-song/laravel-admin" target="_blank">laravel-admin</a></strong>
|
|
</footer>
|