20 lines
815 B
PHP

<footer class="flex flex-col items-center justify-center text-center space-y-2 p-4 text-gray-600 dark:text-gray-400">
{{ \Filament\Support\Facades\FilamentView::renderHook(\App\Enums\CustomRenderHooks::FooterStart->value) }}
<a class="font-semibold" href="https://pelican.dev/docs/#core-team" target="_blank">
&copy; {{ date('Y') }} Pelican
</a>
@if(config('app.debug'))
<div class="flex space-x-1 text-xs">
<x-filament::icon
:icon="'tabler-clock'"
@class(['w-4 h-4 text-gray-500 dark:text-gray-400'])
/>
<span>{{ round(microtime(true) - LARAVEL_START, 3) }}s</span>
</div>
@endif
{{ \Filament\Support\Facades\FilamentView::renderHook(\App\Enums\CustomRenderHooks::FooterEnd->value) }}
</footer>