Advertisement
Guest User

Untitled

a guest
May 26th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <?php
  2.  
  3. namespace App\Support;
  4.  
  5. use Str;
  6.  
  7. class Helper {
  8. /**
  9. * e.g., X4345-ZXCA4-S3XYB-3AST1
  10. */
  11. static public function generateInvitationCode() {
  12. $strings = [];
  13.  
  14. for ($i = 0; $i < 5; $i++) {
  15. $strings[] = strtoupper(Str::random(5));
  16. }
  17.  
  18. return implode('-', $strings);
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement