Save workspace changes
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
@extends('layouts.nova')
|
||||
|
||||
@php
|
||||
$forumEditPostProps = json_encode([
|
||||
'post' => ['id' => $post->id, 'content' => $post->content],
|
||||
'thread' => ['id' => $thread->id, 'title' => $thread->title, 'slug' => $thread->slug],
|
||||
'csrfToken' => csrf_token(),
|
||||
'errors' => $errors->toArray(),
|
||||
], JSON_THROW_ON_ERROR | JSON_UNESCAPED_UNICODE);
|
||||
@endphp
|
||||
|
||||
@section('content')
|
||||
<div id="forum-edit-post-root"></div>
|
||||
<script type="application/json" id="forum-edit-post-props">{!! $forumEditPostProps !!}</script>
|
||||
@endsection
|
||||
|
||||
@push('scripts')
|
||||
@vite(['resources/js/entry-forum.jsx'])
|
||||
@endpush
|
||||
Reference in New Issue
Block a user