Advanced Web Server Manager
Complete File Manager & Terminal - Standalone Version
By Sid Gifari | Gifari Industries
Current path:
/
/
home
/
qtdcvxyp
/
karir.star4hire.com
/
app
/
Providers
✏️
Editing: EventServiceProvider.php
<?php namespace App\Providers; use Illuminate\Support\Facades\Event; use Illuminate\Auth\Events\Registered; use Illuminate\Auth\Listeners\SendEmailVerificationNotification; use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider; use Modules\Booking\Events\EnquirySendEvent; use Modules\Booking\Events\VendorLogPayment; use Modules\Booking\Listeners\EnquiryNotifyListen; use Modules\Booking\Listeners\EnquirySendListen; use Modules\Booking\Listeners\VendorLogPaymentListen; use Modules\User\Events\NewVendorRegistered; use Modules\User\Events\SendMailUserRegistered; use Modules\User\Events\VendorApproved; use Modules\User\Listeners\SendMailUserRegisteredListen; use Modules\User\Listeners\SendNotifyApproved; use Modules\User\Listeners\SendNotifyRegistered; use Modules\User\Listeners\SendNotifyRegisteredListen; use Modules\User\Listeners\SendVendorApprovedMail; use Modules\User\Listeners\SendVendorRegisterdEmail; use Modules\Vendor\Events\PayoutRequestEvent; use Modules\Vendor\Listeners\PayoutNotifyListener; use Modules\Vendor\Listeners\PayoutRequestNotificationListener; class EventServiceProvider extends ServiceProvider { /** * Determine if events and listeners should be automatically discovered. * * @return bool */ public function shouldDiscoverEvents() { return false; } /** * The event listener mappings for the application. * * @var array */ protected $listen = [ Registered::class => [ SendEmailVerificationNotification::class, ], SendMailUserRegistered::class => [ SendMailUserRegisteredListen::class, SendNotifyRegisteredListen::class ], VendorApproved::class=>[ SendVendorApprovedMail::class, //SendNotifyApproved::class ], NewVendorRegistered::class=>[ SendVendorRegisterdEmail::class, //SendNotifyRegistered::class ], PayoutRequestEvent::class=>[ PayoutRequestNotificationListener::class, PayoutNotifyListener::class ], EnquirySendEvent::class=>[ EnquirySendListen::class, EnquiryNotifyListen::class ] ]; /** * Register any events for your application. * * @return void */ public function boot() { parent::boot(); // } }
💾 Save Changes
❌ Cancel