Tag.php 219 B

123456789101112131415
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Tag extends Model
  5. {
  6. protected $fillable = ['name'];
  7. public function posts()
  8. {
  9. return $this->belongsToMany(Post::class);
  10. }
  11. }