am developing a project using Laravel 5.6 where there is requirement of group, were user can create a group, add member or send invitation to user via email and post to group and can have group chat function also.
I want to complete this module, so I am looking for Laravel packages. I have tried "teamwork" package and "groups" package.
Adding Member Group in packages
Hi!
The title says it all : How can I add a Member Group in my package.
I'm using some features with a specific group of members any I want to create it when I install my package.
Thanks! :)
Quick answer no. The way I know about exporting member types is with Usync
https://usync.readthedocs.io
You need to use a package action which gets executed after your package is installed.
This what I have done.
public class ForumInstallHandler : IPackageAction {
}
This is called by adding the following action in the package actions
am developing a project using Laravel 5.6 where there is requirement of group, were user can create a group, add member or send invitation to user via email and post to group and can have group chat function also.
I want to complete this module, so I am looking for Laravel packages. I have tried "teamwork" package and "groups" package.
myaccountaccess
Can you please tell me how did you done? i read all comments but still i didn't got the perfect solution.
is working on a reply...