<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class CommentDetail extends Model
{
    protected $table = 'comment_details';

    protected $fillable = ['id', 'comment_id', 'content', 'title', 'domain', 'description', 'thumbnail', 'current_img', 'is_url', 'created_at', 'updated_at'];
}
