15 lines
604 B
PHP
Raw Normal View History

2022-06-01 10:15:55 +03:00
@stack('footer_start')
2023-03-17 14:55:12 +03:00
<footer class="footer container">
2022-10-31 18:42:44 +03:00
<div class="flex flex-col sm:flex-row items-center justify-between lg:mt-20 py-7 text-sm font-light">
2022-06-01 10:15:55 +03:00
<div>
{{ trans('footer.powered') }}:
2022-08-03 14:04:32 +03:00
<x-link href="{{ trans('footer.link') }}" target="_blank" override="class">{{ trans('footer.software') }}</x-link>
2022-06-01 10:15:55 +03:00
&nbsp;<span class="material-icons align-middle text-black-300">code</span>&nbsp;
{{ trans('footer.version') }} {{ version('short') }}
</div>
</div>
</footer>
@stack('footer_end')