'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)); } }