Created
September 29, 2018 18:28
-
-
Save haydar/146d71250b5efc43cff7b7ce59cf26ed to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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