20 lines
867 B
PHP
20 lines
867 B
PHP
@php
|
|
$containerFooter = ($configData['contentLayout'] === 'compact') ? 'container-xxl' : 'container-fluid';
|
|
@endphp
|
|
|
|
<!-- Footer -->
|
|
<footer class="content-footer footer bg-footer-theme">
|
|
<div class="{{ $containerFooter }}">
|
|
<div class="footer-container d-flex align-items-center justify-content-between py-4 flex-md-row flex-column">
|
|
<div class="text-body mb-2 mb-md-0 fw-light">
|
|
© 2024-<script>document.write(new Date().getFullYear())</script> {{ config('app.name') }}. All rights reserved.
|
|
</div>
|
|
<div class="text-body d-none d-lg-inline-block">
|
|
Made with <span class="text-danger"><i class="tf-icons ri-heart-fill"></i></span> by
|
|
<span class="fw-semibold">{{ (!empty(config('variables.creatorName')) ? config('variables.creatorName') : '') }}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
<!--/ Footer -->
|