Listeners 监听用户登录 偶偶不起作用

第一次登录不会触发,长时间后重新登录也不会触发
只有登录后退出 又马上登录才会触发 是什么情况?

 protected $listen = [
        Registered::class => [
            SendEmailVerificationNotification::class,
        ],
        'Illuminate\Auth\Events\Login' => [
            'App\Listeners\LogSuccessfulLogin',
        ],
 ];
<?php

namespace App\Listeners;

use Illuminate\Auth\Events\Login;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\Log;
use Jenssegers\Agent\Agent;

class LogSuccessfulLogin
{
    /**
     * Create the event listener.
     *
     * @return void
     */
    public function __construct()
    {
        //
    }

    /**
     * Handle the event.
     *
     * @param  Login  $event
     * @return void
     * login => 1, registered => 2
     */
    public function handle(Login $event)
    {   
        $agent = new Agent();

         DB::table('user_login_log')->insert([
            'user_id' => $event->user->id,
            'username' => $event->user->name,
            'login_ip' => $_SERVER["HTTP_CF_CONNECTING_IP"],
            'login_city' => $_SERVER["HTTP_CF_IPCOUNTRY"],
            'login_time' => $event->user->updated_at,
            'device' => $agent->device(),
            'type' => '1',
            'browser' => $agent->browser().$agent->version($agent->browser()),
        ]);
    }
}
《L03 构架 API 服务器》
你将学到如 RESTFul 设计风格、PostMan 的使用、OAuth 流程,JWT 概念及使用 和 API 开发相关的进阶知识。
《G01 Go 实战入门》
从零开始带你一步步开发一个 Go 博客项目,让你在最短的时间内学会使用 Go 进行编码。项目结构很大程度上参考了 Laravel。
讨论数量: 4

登录逻辑的代码呢

2年前 评论
AegisforPhP (楼主) 2年前
AegisforPhP (楼主) 2年前
php_yt (作者) 2年前

讨论应以学习和精进为目的。请勿发布不友善或者负能量的内容,与人为善,比聪明更重要!