Files
Nexora/app/Livewire/CommentSystem.php

14 lines
188 B
PHP
Raw Normal View History

2025-04-23 00:14:33 +06:00
<?php
namespace App\Livewire;
use Livewire\Component;
class CommentSystem extends Component
{
public function render()
{
return view('livewire.comment-system');
}
}