authentication - Laravel 5 Register Route with get parameter for registration key -


trying allow registration via secret key only.

want pass in key view. new l5 auth system little buttoned down, not want make changes vendor files if possible.

e.g. /auth/register/md5-key-code-here

register view:

... extend authenticatesandregistersusers' class getregister method:

public function getregister($key) {     return view('auth.register')             ->with('key', $key); } 

Comments

Popular posts from this blog

java - Spring Data JPA: Why findOne(id) executing delete query internally? -

python - Mongodb How to add addtional information when aggregating? -

java - Incorrect order of records in M-M relationship in hibernate -