<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Relations\Pivot;
class ArticleCate extends Pivot
{
protected $table = 'article_cate';
public $timestamps = false;
public $fillable = ['article_category_id', 'article_id'];
public function detach()
{
}
}