| 1234567891011121314151617 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- class Tag extends Model
- {
- protected $fillable = ['name','sort'];
- //与文章多对多关联
- public function articles()
- {
- return $this->belongsToMany('App\Models\Article','article_tag','tag_id','article_id');
- }
- }
|