*/ use HasFactory, Notifiable; public function webhookEndpoints(): HasMany { return $this->hasMany(WebhookEndpoint::class); } /** * Get the attributes that should be cast. * * @return array */ protected function casts(): array { return [ 'email_verified_at' => 'datetime', 'password' => 'hashed', ]; } }