*/ use HasFactory; protected $fillable = [ 'name', ]; public function buckets(): HasMany { return $this->hasMany(Bucket::class); } /** * Get the streams for this scenario. */ public function streams(): HasMany { return $this->hasMany(Stream::class); } /** * Get the inflows for this scenario. */ public function inflows(): HasMany { return $this->hasMany(Inflow::class); } /** * Get the outflows for this scenario. */ public function outflows(): HasMany { return $this->hasMany(Outflow::class); } }