belongsTo(Assistant::class); } public function user(): BelongsTo { return $this->belongsTo(User::class); } public function histories(): HasMany { return $this->hasMany(ChatHistory::class); } }