belongsTo(User::class); } public function barbershop(): BelongsTo { return $this->belongsTo(Barbershop::class); } public function attachments(): MorphMany { return $this->morphMany(Attachment::class, 'attachmentable'); } }