Laravel.io
public function created(User $user): void
{
  // verify/{token} olarak gelen Token'ı random oluştur.
  $token = Str::random(40);
  // Ön Bellekte 60 dakika boyunca token'ı sakla.
  Cache::put('verify_token_'.$token, $user->id,  3600);
  $user->notify(new WelcomeMailNotification($token));
}

Please note that all pasted data is publicly available.