*/ use HasFactory, Notifiable, TwoFactorAuthenticatable; /** * Get the attributes that should be cast. * * @return array */ protected function casts(): array { return [ 'email_verified_at' => 'datetime', 'password' => 'hashed', 'two_factor_confirmed_at' => 'datetime', ]; } /** * Get the Docker image builds created by the user. */ public function dockerImageBuilds(): HasMany { return $this->hasMany(DockerImageBuild::class); } }