Laravel 5.3 uses RegisterController to make a new user row. But it seems to me Spark isn't. I want to add more detail into the row being created. How can I do this in spark? I'm looking for the controller where I can go to for the edits.
I wrote in an extra detail into RegisterController:
You can always check with dumping out $data in that method which will allow you to see even if it hits that place.
If no - issue is somewhere else. Maybe validation failed somehow - to check that you can dump out the error bag in top of your view and see what is going on. From that you will probably find what is wrong.
Does anyone know which controller spark has its registration go to? I thought it would be the RegisterController (like Laravel), but it's clear to me that the create() function isn't even being reached (When I delete the create function, and then sign up, the row still goes through).