| Current Path : /home/webg5288/www/laravel_kendal/vendor/jeffgreco13/filament-breezy/src/Events/ |
| Current File : /home/webg5288/www/laravel_kendal/vendor/jeffgreco13/filament-breezy/src/Events/LoginSuccess.php |
<?php
namespace Jeffgreco13\FilamentBreezy\Events;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class LoginSuccess
{
use Dispatchable;
use InteractsWithSockets;
use SerializesModels;
public $user;
/**
* Create a new event instance.
*
* @return void
*/
public function __construct($user)
{
$this->user = $user;
}
}