20 lines
451 B
PHP
Raw Normal View History

2019-12-12 22:33:12 +08:00
<?php
namespace catchAdmin\system\controller;
use catcher\base\CatchController;
use catcher\CatchResponse;
use think\facade\Db;
class LoginLog extends CatchController
{
public function list()
{
2020-04-17 15:02:50 +08:00
return CatchResponse::paginate(Db::name('login_log')->paginate(request()->param('limit') ?? 10));
2019-12-12 22:33:12 +08:00
}
2019-12-15 15:50:10 +08:00
public function empty()
{
return CatchResponse::success(Db::name('login_log')->delete(true), '清空成功');
}
2019-12-12 22:33:12 +08:00
}