Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
app
/
Providers
:
EventServiceProvider.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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); } }