nyaabooru/app/Livewire/Posts/Comment.php
2025-05-24 17:01:54 -04:00

16 lines
257 B
PHP

<?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');
}
}