Skip to content

Instantly share code, notes, and snippets.

@haydar
Created September 29, 2018 18:28
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 haydar/146d71250b5efc43cff7b7ce59cf26ed to your computer and use it in GitHub Desktop.
Save haydar/146d71250b5efc43cff7b7ce59cf26ed to your computer and use it in GitHub Desktop.
namespace App\Listeners;
use App\Events\YeniKayit;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Contracts\Queue\ShouldQueue;
class SendVerificitionMail
{
/**
* Create the event listener.
*
* @return void
*/
public function __construct()
{
//
}
/**
*
* @param NewUser $event
* @return void
*/
public function handle(YeniKayit $event)
{
//Çalışmasını istediğiniz kod.
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment