'integer', 'images' => 'array', 'status' => 'integer', 'handle_at' => 'datetime', ]; } public function profile(): BelongsTo { return $this->belongsTo(CareProfile::class, 'care_profile_id'); } public function reporter(): BelongsTo { return $this->belongsTo(User::class, 'reporter_id'); } public function handler(): BelongsTo { return $this->belongsTo(User::class, 'handler_id'); } }