Event Classes
An event class is a data container which holds the information related to the event.
Defining Events
<?php
namespace App\Events;
use Yuga\Events\Dispatcher\Dispatcher;
class UserAuthenticated extends Dispatcher
{
/**
* Event Name
*/
protected $name = 'on:userauthenticated';
}Last updated