belongsTo(User::class); } protected function casts(): array { return [ 'status' => TodoProgress::class, 'due_date' => 'date', 'priority' => PriorityStatus::class, ]; } /** * Get the indexable data array for the model. * * @return array */ public function toSearchableArray(): array { $array = $this->toArray(); // Customize the data array... return $array; } }