15 lines
600 B
PHP
15 lines
600 B
PHP
@stack('footer_start')
|
|
|
|
<footer class="footer">
|
|
<div class="flex flex-col sm:flex-row items-center justify-between mt-10 lg:mt-20 py-7 text-sm font-light">
|
|
<div>
|
|
{{ trans('footer.powered') }}:
|
|
<x-link href="{{ trans('footer.link') }}" target="_blank" override="class">{{ trans('footer.software') }}</x-link>
|
|
<span class="material-icons align-middle text-black-300">code</span>
|
|
{{ trans('footer.version') }} {{ version('short') }}
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
@stack('footer_end')
|