Site du proximo, utilisé pour gérer le stock.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

EventServiceProvider.php 685B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. namespace App\Providers;
  3. use Illuminate\Auth\Events\Registered;
  4. use Illuminate\Auth\Listeners\SendEmailVerificationNotification;
  5. use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
  6. use Illuminate\Support\Facades\Event;
  7. class EventServiceProvider extends ServiceProvider
  8. {
  9. /**
  10. * The event listener mappings for the application.
  11. *
  12. * @var array
  13. */
  14. protected $listen = [
  15. Registered::class => [
  16. SendEmailVerificationNotification::class,
  17. ],
  18. ];
  19. /**
  20. * Register any events for your application.
  21. *
  22. * @return void
  23. */
  24. public function boot()
  25. {
  26. //
  27. }
  28. }