How to show associated attachment model images in forms?
Currently there is the IdentityVerification model. IdentityVerification and Attachment are one-to-many relationships. I want to display the Attachment of the current message in the resource edit page of IdentityVerification, what should I do?
public function attachments() { return $this->hasMany(Attachment::class, 'model_id'); }
public function attachments() { return $this->hasMany(Attachment::class, 'model_id'); }