*/ 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; /** * Belongs To Many Torrents. * * @return \Illuminate\Database\Eloquent\Relations\BelongsToMany */ public function torrents(): \Illuminate\Database\Eloquent\Relations\BelongsToMany { return $this->belongsToMany(Torrent::class); } }