controller()) != 'index') SystemLog::adminVisit($adminInfo->id, $adminInfo->account, $type); } /** * 添加管理员最后登录时间和ip * @param $event */ public function onSystemAdminLoginAfter($event) { list($adminInfo) = $event; SystemAdmin::edit(['last_ip' => app('request')->ip(), 'last_time' => time()], $adminInfo['id']); } /** * 商户注册成功之后 * @param $event */ public function onMerchantRegisterAfter($event) { list($merchantInfo) = $event; } }