Gender::class, 'birth_date' => 'date', ]; } protected function birthDateFormatted(): Attribute { return Attribute::make( get: fn () => Carbon::parse($this->birth_date)->format('l, d F Y'), ); } public function user(): BelongsTo { return $this->belongsTo(User::class); } }