Implement auto-save feature and sticky header in EditPage: Added auto-save functionality with silent notifications for successful saves, enhancing user experience. Introduced a new Blade view for sticky header and footer, ensuring accessibility of actions during editing. Updated custom block rendering to support markdown formatting.

This commit is contained in:
Ümit Tunç
2025-10-30 17:38:17 -03:00
parent d5458ec0e3
commit 0f78292c46
3 changed files with 101 additions and 1 deletions
@@ -1,3 +1,9 @@
@foreach($data as $item)
{!! $item['value'] !!}
@if(($item['type'] ?? null) === 'markdown')
<div class="container">
{!! \Illuminate\Support\Str::markdown($item['value']) !!}
</div>
@else
{!! $item['value'] !!}
@endif
@endforeach