mirror of
https://github.com/zoe-may/TDoG-Skin.git
synced 2025-01-19 10:17:24 +08:00
18 lines
295 B
PHP
18 lines
295 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Http\Middleware;
|
||
|
|
||
|
use Closure;
|
||
|
|
||
|
class FireUserAuthenticated
|
||
|
{
|
||
|
public function handle($request, Closure $next)
|
||
|
{
|
||
|
if (auth()->check()) {
|
||
|
event(new \App\Events\UserAuthenticated($request->user()));
|
||
|
}
|
||
|
|
||
|
return $next($request);
|
||
|
}
|
||
|
}
|