*/ use HasFactory; /** * The attributes that are mass assignable. * * @var list */ protected $fillable = [ 'name', ]; /** * Indicates if the model should be timestamped. * * @var bool */ public $timestamps = false; /** * Get the torrents that have this keyword. * * @return BelongsToMany */ public function torrents(): BelongsToMany { return $this->belongsToMany(Torrent::class); } }