Tag.php 313 B

1234567891011121314151617
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Tag extends Model
  5. {
  6. protected $fillable = ['name','sort'];
  7. //与文章多对多关联
  8. public function articles()
  9. {
  10. return $this->belongsToMany('App\Models\Article','article_tag','tag_id','article_id');
  11. }
  12. }