mirror of
https://github.com/NyaaStudios/nyaabooru.git
synced 2025-12-10 05:42:58 +00:00
update
This commit is contained in:
parent
afc1fb10bc
commit
8004c8d69e
12 changed files with 320 additions and 5 deletions
16
app/Livewire/Posts/Comment.php
Normal file
16
app/Livewire/Posts/Comment.php
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
<?php
|
||||
|
||||
namespace App\Livewire\Posts;
|
||||
|
||||
use App\Models\Comment as PostComment;
|
||||
use Livewire\Component;
|
||||
|
||||
class Comment extends Component
|
||||
{
|
||||
public PostComment $comment;
|
||||
|
||||
public function render()
|
||||
{
|
||||
return view('livewire.posts.comment');
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue