*/ protected $casts = [ 'id' => 'integer', 'podcast_id' => 'integer', 'episode_id' => 'integer', 'start_time' => 'float', 'duration' => 'float', 'label' => '?string', 'created_by' => 'integer', 'updated_by' => 'integer', ]; public function setUpdatedBy(User $user): self { $this->attributes['updated_by'] = $user->id; return $this; } }