17 lines
516 B
PHP
17 lines
516 B
PHP
@if(\App\Utils::config(\App\Enums\ConfigKey::SiteNotice))
|
|
<x-modal id="notice-modal">
|
|
<div class="markdown-body">
|
|
{!! (new Parsedown())->parse(\App\Utils::config(\App\Enums\ConfigKey::SiteNotice)) !!}
|
|
</div>
|
|
</x-modal>
|
|
|
|
@push('scripts')
|
|
<script>
|
|
if (! sessionStorage.getItem('noticed')) {
|
|
Alpine.store('modal').open('notice-modal')
|
|
sessionStorage.setItem('noticed', '1');
|
|
}
|
|
</script>
|
|
@endpush
|
|
@endif
|