Closed cshipley closed 9 years ago
The best way in my view would be to simply change the the App/Services/Registrar to extend LaraParse/Auth/Registrar then override the create method.
Thanks. Overriding create worked. Using the validator is a bit quirky since it is declared private in the parent class. However I just copied the way the constructor was being called and it works.
Thanks!
I want to add some custom registration fields.
I can replace the default generated App/Services/Registrar with LaraParse/Auth/Registrar and then change the create() method to do what I want.
Is this the best way to do this, or is there a better way?