athenahr/resources/views/breadcrumbs/footer.blade.php

21 lines
952 B
PHP
Raw Normal View History

<!-- Footer -->
<footer class="page-footer font-small footer-grad">
2020-09-01 00:29:58 +01:00
<!-- Copyright - DO NOT REMOVE WITHOUT PERMISSION -->
<div class="footer-copyright text-center py-3">
{!! __('<a href=":appUrlConfigValue"> :appNameConfigValue :appReleaseConfigValue &copy; :currentYear - Took :pageLoadTimeMillis seconds.</a>', [
'appUrlConfigValue' => config('app.url'),
'appNameConfigValue' => config('app.name'),
'appReleaseConfigValue' => config('app.release'),
'currentYear' => now()->year,
'pageLoadTimeMillis' => round(microtime(true) - LARAVEL_START, 3)
]) !!}
<br>
<a target="_blank" rel="nofollow noopener" href="https://athenahr.pt">{{ __('Powered by AthenaHR') }} &copy;</a>
</div>
<!-- Copyright -->
<!-- AthenaHR // GNU General Public License (https://www.gnu.org/licenses/gpl-3.0.en.html) Built by Miguel N. -->
</footer>
<!-- Footer -->