Skip to content

Instantly share code, notes, and snippets.

@introwit
Last active May 3, 2017 00:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save introwit/f0ade18cbad47288350129654ded9ae8 to your computer and use it in GitHub Desktop.
Save introwit/f0ade18cbad47288350129654ded9ae8 to your computer and use it in GitHub Desktop.
Email verification blog - gist 2
<?php
/**
* Over-ridden the register method from the "RegistersUsers" trait
* Remember to take care while upgrading laravel
*/
public function register(Request $request)
{
// Laravel validation
$validator = $this->validator($request->all());
if ($validator->fails())
{
$this->throwValidationException($request, $validator);
}
// Using database transactions is useful here because stuff happening is actually a transaction
// I don't know what I said in the last line! Weird!
DB::beginTransaction();
try
{
$user = $this->create($request->all());
// After creating the user send an email with the random token generated in the create method above
$email = new EmailVerification(new User(['email_token' => $user->email_token, 'name' => $user->name]));
Mail::to($user->email)->send($email);
DB::commit();
return back();
}
catch(Exception $e)
{
DB::rollback();
return back();
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment