Files
-S.I.S-QuaySo_v2/app/Models/PostComment.php
T
2026-03-26 09:28:14 +07:00

16 lines
257 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class PostComment extends Model
{
protected $fillable = [
'id',
'post_id',
'post_comment',
'user_name',
'comment_like'
];
}