1
0
mirror of https://github.com/freescout-helpdesk/freescout.git synced 2024-11-24 19:33:07 +01:00
freescout/app/Listeners/LogLockout.php
2018-07-24 06:34:28 +00:00

35 lines
610 B
PHP

<?php
namespace App\Listeners;
use Illuminate\Auth\Events\Lockout;
class LogLockout
{
/**
* Create the event listener.
*
* @return void
*/
public function __construct()
{
//
}
/**
* Handle the event.
*
* @param Lockout $event
*
* @return void
*/
public function handle(Lockout $event)
{
activity()
->causedBy($event->user)
->withProperties(['ip' => app('request')->ip()])
->useLog(\App\ActivityLog::NAME_USER)
->log(\App\ActivityLog::DESCRIPTION_USER_LOCKED);
}
}