Skip to content

Instantly share code, notes, and snippets.

@eaponiente
Created August 16, 2017 10:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eaponiente/7a56548f088da39d89f57f3e2c2c7bc0 to your computer and use it in GitHub Desktop.
Save eaponiente/7a56548f088da39d89f57f3e2c2c7bc0 to your computer and use it in GitHub Desktop.
<?php
$user = User::where('email', $email)->first();
if($user) {
$user->update([
'key' => str_random(7)
]);
}
// generate ug link
echo url( 'restaurant/' . $user->uuid . '/' . $user->key );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment