*/ use HasFactory; /** * Indicates if the model should be timestamped. * * @var bool */ public $timestamps = false; /** * The attributes that aren't mass assignable. * * @var string[] */ protected $guarded = ['id', 'created_at', 'updated_at']; /** * Get the torrents for this distributor. * * @return HasMany */ public function torrents(): HasMany { return $this->hasMany(Torrent::class); } }