first commit
This commit is contained in:
37
modules/User/Models/LogLogin.php
Normal file
37
modules/User/Models/LogLogin.php
Normal file
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\User\Models;
|
||||
|
||||
use Illuminate\Contracts\Pagination\LengthAwarePaginator;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Psr\Container\ContainerExceptionInterface;
|
||||
use Psr\Container\NotFoundExceptionInterface;
|
||||
|
||||
class LogLogin extends Model
|
||||
{
|
||||
protected $table = 'log_login';
|
||||
|
||||
public $timestamps = false;
|
||||
|
||||
protected $fillable = [
|
||||
'id', 'account', 'login_ip', 'browser', 'platform', 'login_at', 'status',
|
||||
];
|
||||
|
||||
|
||||
protected $casts = [
|
||||
'login_at' => 'datetime:Y-m-d H:i'
|
||||
];
|
||||
|
||||
/**
|
||||
*
|
||||
* @param string $email
|
||||
* @return LengthAwarePaginator
|
||||
* @throws ContainerExceptionInterface
|
||||
* @throws NotFoundExceptionInterface
|
||||
*/
|
||||
public function getUserLogBy(string $email): LengthAwarePaginator
|
||||
{
|
||||
return self::query()->where('account', $email)
|
||||
->paginate(request()->get('limit', 10));
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user