16 lines
242 B
PHP
16 lines
242 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'
|
|
];
|
|
} |