24 lines
915 B
PHP
24 lines
915 B
PHP
<!-- -------- START FOOTER 3 w/ COMPANY DESCRIPTION WITH LINKS & SOCIAL ICONS & COPYRIGHT ------- -->
|
|
<footer class="footer py-5">
|
|
<div class="container">
|
|
<div class="row">
|
|
|
|
@if (!auth()->user() || \Request::is('static-sign-up'))
|
|
@endif
|
|
</div>
|
|
@if (!auth()->user() || \Request::is('static-sign-up'))
|
|
<div class="row">
|
|
<div class="col-8 mx-auto text-center mt-1">
|
|
<p class="mb-0 text-secondary">
|
|
Copyright ©
|
|
<script>
|
|
document.write(new Date().getFullYear())
|
|
</script>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
</footer>
|
|
<!-- -------- END FOOTER 3 w/ COMPANY DESCRIPTION WITH LINKS & SOCIAL ICONS & COPYRIGHT ------- -->
|