File "EventServiceProvider.php"
Full Path: /home/fundopuh/trader.fxex.org/app/Providers/EventServiceProvider.php
File size: 950 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
// this Code is Cracked by dharunMods-YouTube-Channel
namespace App\Providers;
use Illuminate\Auth\Events\Registered;
use App\Listeners\SendWelcomeEmail;
use Illuminate\Auth\Listeners\SendEmailVerificationNotification;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
use App\Models\User;
use App\Observers\UserObserver;
use Illuminate\Auth\Events\Verified;
class EventServiceProvider extends ServiceProvider
{
/**
* The event listener mappings for the application.
*
* @var array
*/
protected $listen = [
Registered::class => [
SendEmailVerificationNotification::class,
],
Verified::class => [
SendWelcomeEmail::class,
],
];
/**
* Register any events for your application.
*
* @return void
*/
public function boot()
{
//
User::observe(UserObserver::class);
}
}