<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class LinkHistoryDetail extends Model
{
    protected $table = 'link_history_details';

    protected $fillable = ['id', 'link_history_id', 'article_id', 'title', 'content', 'total', 'status', 'created_at', 'updated_at'];
}
