Files
Nexora/app/Livewire/CommentSystem.php
Javi 356f56eebd
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
first commit
2025-04-23 00:14:33 +06:00

14 lines
188 B
PHP

<?php
namespace App\Livewire;
use Livewire\Component;
class CommentSystem extends Component
{
public function render()
{
return view('livewire.comment-system');
}
}