タグ登録機能の追加

This commit is contained in:
shibafu
2018-01-08 08:50:22 +09:00
parent d7b16cd6d5
commit b1dcc36565
7 changed files with 96 additions and 12 deletions

View File

@@ -22,4 +22,9 @@ class Ejaculation extends Model
{
return $this->belongsTo('App\User');
}
public function tags()
{
return $this->belongsToMany('App\Tag')->withTimestamps();
}
}