belongsTo(User::class); } public function deals(): BelongsToMany { return $this->belongsToMany(Deal::class); } protected function casts(): array { return [ 'type' => ReportType::class, 'status' => ReportStatus::class, ]; } }