https://gogo002.xbiz.jp/rintec/user_data/loan

ErrorController

Request

GET Parameters

No GET parameters

POST Parameters

No POST parameters

Uploaded Files

No files were uploaded

Request Attributes

Key Value
_controller
"error_controller"
_stopwatch_token
"43e58a"
exception
Twig\Error\RuntimeError {#9180
  -lineno: 272
  -name: "@user_data/loan.twig"
  -rawMessage: "Variable "pagination" does not exist."
  -sourcePath: "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/app/template/user_data/loan.twig"
  -sourceCode: """
    {% extends 'default_frame.twig' %}\r\n
    \r\n
    {% block stylesheet %}\r\n
        <style>\r\n
            .ec-loan_sec.v3 .list-product{\r\n
                flex-wrap: wrap;\r\n
                gap: 3rem;\r\n
                justify-content: flex-start;\r\n
            }\r\n
            .ec-loan_sec.v3 .list-product .product .costs {\r\n
                justify-content: flex-start;\r\n
                gap: 5rem;\r\n
            }\r\n
            @media screen and (min-width: 768px) {\r\n
                .ec-loan_sec.v3 .list-product .product{\r\n
                    width: calc((100% - 6rem) / 3);\r\n
                    max-width: 100%;\r\n
                }\r\n
            }\r\n
        </style>\r\n
    {% endblock %}\r\n
    \r\n
    {% block javascript %}\r\n
        <script>\r\n
            eccube.productsClassCategories = {\r\n
                {% for Product in pagination %}\r\n
                "{{ Product.id|escape('js') }}": {{ class_categories_as_json(Product)|raw }}{% if loop.last == false %}, {% endif %}\r\n
                {% endfor %}\r\n
            };\r\n
    \r\n
            $(function() {\r\n
                // 検索条件を追加\r\n
                $('.btn-condition').click(function() {\r\n
                    $('#active_idx').val($(this).index());\r\n
                });\r\n
                $('.form-check-input').change(function() {\r\n
                    $("#form1").submit();\r\n
                });\r\n
    \r\n
                // 表示件数を変更\r\n
                $('.disp-number').change(function() {\r\n
                    var dispNumber = $(this).val();\r\n
                    $('#disp_number').val(dispNumber);\r\n
                    $('#pageno').val(1);\r\n
                    $("#form1").submit();\r\n
                });\r\n
    \r\n
                // 並び順を変更\r\n
                $('.order-by').change(function() {\r\n
                    var orderBy = $(this).val();\r\n
                    $('#orderby').val(orderBy);\r\n
                    $('#pageno').val(1);\r\n
                    $("#form1").submit();\r\n
                });\r\n
    \r\n
                $('.add-cart').on('click', function(e) {\r\n
                    var $form = $(this).parents('li').find('form');\r\n
    \r\n
                    // TODO: test 修正要\r\n
                    // 規格1フォームの必須チェック\r\n
                    var $form_select = $form.parent().find('.form-select');\r\n
                    if ($form_select.val() == '__unselected' || $form_select.val() == '') {\r\n
                        $form_select[0].setCustomValidity('{{ '項目が選択されていません'|trans }}');\r\n
                        setTimeout(function() {\r\n
                            loadingOverlay('hide');\r\n
                        }, 100);\r\n
                        return true;\r\n
                    } else {\r\n
                        $form_select[0].setCustomValidity('');\r\n
                    }\r\n
    \r\n
                    // 個数フォームのチェック\r\n
                    var $quantity = $form.parent().find('.quantity');\r\n
                    if ($quantity.val() < 1) {\r\n
                        $quantity[0].setCustomValidity('{{ '1以上で入力してください。'|trans }}');\r\n
                        setTimeout(function() {\r\n
                            loadingOverlay('hide');\r\n
                        }, 100);\r\n
                        return true;\r\n
                    } else {\r\n
                        $quantity[0].setCustomValidity('');\r\n
                    }\r\n
    \r\n
                    e.preventDefault();\r\n
                    $.ajax({\r\n
                        url: $form.attr('action'),\r\n
                        type: $form.attr('method'),\r\n
                        data: $form.serialize(),\r\n
                        dataType: 'json',\r\n
                        beforeSend: function(xhr, settings) {\r\n
                            // Buttonを無効にする\r\n
                            $('.add-cart').prop('disabled', true);\r\n
                        }\r\n
                    }).done(function(data) {\r\n
                        // レスポンス内のメッセージをalertで表示\r\n
                        $.each(data.messages, function() {\r\n
                            $('#ec-modal-header').text(this);\r\n
                        });\r\n
    \r\n
                        $('.ec-modal').show()\r\n
    \r\n
                        // カートブロックを更新する\r\n
                        $.ajax({\r\n
                            url: '{{ url('block_cart') }}',\r\n
                            type: 'GET',\r\n
                            dataType: 'html'\r\n
                        }).done(function(html) {\r\n
                            $('.ec-headerRole__cart').html(html);\r\n
                        });\r\n
                    }).fail(function(data) {\r\n
                        alert('{{ 'カートへの追加に失敗しました。'|trans }}');\r\n
                    }).always(function(data) {\r\n
                        // Buttonを有効にする\r\n
                        $('.add-cart').prop('disabled', false);\r\n
                    });\r\n
                });\r\n
    \r\n
                $('.favorite').click(function(event) {\r\n
                    if ($(this).attr('disabled') != 'disabled') {\r\n
                        $(this).closest('li.product').find('.list-add-favorite').submit();\r\n
                    }\r\n
                });\r\n
            });\r\n
    \r\n
            $('.ec-modal-wrap').on('click', function(e) {\r\n
                // モーダル内の処理は外側にバブリングさせない\r\n
                e.stopPropagation();\r\n
            });\r\n
            $('.ec-modal-overlay, .ec-modal, .ec-modal-close, .ec-inlineBtn--cancel').on('click', function() {\r\n
                $('.ec-modal').hide()\r\n
            });\r\n
        </script>\r\n
    \r\n
        <script>\r\n
            $(document).ready(function(){\r\n
                //チェックボックス処理\r\n
                $(".left .list-btn .btn-condition").eq($('#active_idx').val()).addClass('active');\r\n
                $(".right .item").eq($('#active_idx').val()).addClass('active');\r\n
    \r\n
                $(".right .item").each(function(index, el) {\r\n
                    var chk_cnt = $(this).find("input[type='checkbox']:checked").length;\r\n
                    $('.btn-condition').eq(index).find('.chk-cnt').text(chk_cnt);\r\n
                    if (chk_cnt > 0) {\r\n
                        $('.btn-condition').eq(index).find('.chk-cnt').show();\r\n
                    }\r\n
                    else {\r\n
                        $('.btn-condition').eq(index).find('.chk-cnt').hide();\r\n
                    }\r\n
                });\r\n
    \r\n
    \r\n
                $(".left .list-btn .btn-condition").click(function(e){\r\n
                    if (!$(this).hasClass("active")) {\r\n
                        var tabNum = $(this).index();\r\n
                        var nthChild = tabNum+1;\r\n
                        $(".left .list-btn .btn-condition.active").removeClass("active");\r\n
                        $(this).addClass("active");\r\n
                        $(".right .item.active").removeClass("active");\r\n
                        $(".right .item:nth-child("+nthChild+")").addClass("active");\r\n
                    }\r\n
                });\r\n
    \r\n
                $(".reset").click(function(e){\r\n
                    $(".item input[type='checkbox']:checked").prop('checked', false);\r\n
                    $("#form1").submit();\r\n
                });\r\n
            });\r\n
        </script>\r\n
    {% endblock %}\r\n
    \r\n
    {% block main %}\r\n
    \r\n
    <div class="ec-loan-page">\r\n
        <div class="ec-banner">\r\n
            <div class="ec-banner__inner">\r\n
                <div class="inner">\r\n
                    <h2>\r\n
                        エアココ自社ローンについて\r\n
                    </h2>\r\n
                </div>\r\n
            </div>\r\n
            <div class="ec-breadcrumb">\r\n
                <ul class="ec-breadcrumb__menu">\r\n
                    <li class="ec-breadcrumb__item"><a href="{{ url('homepage') }}">TOP</a></li>\r\n
                    <li class="ec-breadcrumb__item"><span>></span></li>\r\n
                    <li class="ec-breadcrumb__item"><p>エアココ自社ローンについて</p></li>\r\n
                </ul>\r\n
            </div>\r\n
        </div>\r\n
        <div class="ec-loan-main">\r\n
            <div class="ec-loan__inner">\r\n
                <div class="inner">\r\n
                    <div class="ec-loan_sec">\r\n
                        <div class="group-top">\r\n
                            <div class="title">\r\n
                                <p>こんなことでお困りではありませんか?</p>\r\n
                            </div>\r\n
                            <div class="image">\r\n
                                <img src="{{ asset('assets/img/loan/img.png') }}" alt="">\r\n
                            </div>\r\n
                        </div>\r\n
                    </div>\r\n
                    <div class="ec-loan_sec v2">\r\n
                        <div class="title">\r\n
                            <p>でも安心してください!<br />\r\n
                                エアココ自社ローンなら大丈夫!</p>\r\n
                        </div>\r\n
                        <div class="text">\r\n
                            <p>エアコンを購入したいのにローン審査が通らなかったというお話を聞きます。エアココでは一般のファイナンスで審査が通らなかったお客様も安心してエアコンを設置できるようにエアココローン(自社ローン)のサービスを始めました。ローンの審査に不安がある方は、まず審査をしてみてください。</p>\r\n
                        </div>\r\n
                        <div class="group">\r\n
                            <div class="title sm">\r\n
                                <p>自社ローンの特徴</p>\r\n
                            </div>\r\n
                            <div class="list">\r\n
                                <div class="item">\r\n
                                    <div class="num">\r\n
                                        <p>1</p>\r\n
                                    </div>\r\n
                                    <div class="text">\r\n
                                        <p>金融機関や<br />\r\n
                                            ファイナンス会社の</p>\r\n
                                    </div>\r\n
                                    <div class="title">\r\n
                                        <p>審査は不要</p>\r\n
                                    </div>\r\n
                                    <div class="text">\r\n
                                        <p>(エアココの審査のみ)</p>\r\n
                                    </div>\r\n
                                </div>\r\n
                                <div class="item">\r\n
                                    <div class="num">\r\n
                                        <p>2</p>\r\n
                                    </div>\r\n
                                    <div class="text">\r\n
                                        <p>過去の</p>\r\n
                                    </div>\r\n
                                    <div class="title">\r\n
                                        <p>個人情報の<br />\r\n
                                            提出不要</p>\r\n
                                    </div>\r\n
                                </div>\r\n
                                <div class="item">\r\n
                                    <div class="num">\r\n
                                        <p>3</p>\r\n
                                    </div>\r\n
                                    <div class="title">\r\n
                                        <p>24回払い</p>\r\n
                                    </div>\r\n
                                </div>\r\n
                                <div class="item">\r\n
                                    <div class="num">\r\n
                                        <p>4</p>\r\n
                                    </div>\r\n
                                    <div class="title">\r\n
                                        <p>金利<span>0</span>%</p>\r\n
                                    </div>\r\n
                                </div>\r\n
                            </div>\r\n
                        </div>\r\n
                        <div class="list-btn">\r\n
                            <a href="{{ url('loan_examination') }}" class="btn btn-sd">\r\n
                                エアココ自社ローンのお申し込みはこちら\r\n
                            </a>\r\n
                        </div>\r\n
                    </div>\r\n
                    <div class="ec-loan_sec v3 ec-product__group">\r\n
                        <div class="title">\r\n
                            <p>エアココ自社ローン対象商品</p>\r\n
                        </div>\r\n
                        <ul class="list-product">\r\n
                            {% if pagination.totalItemCount > 0 %}\r\n
                                {% for Product in pagination %}\r\n
                                    <li class="product">\r\n
                                        <a href="{{ url('product_detail', {'id': Product.id}) }}" class="image">\r\n
                                            <img src="{{ asset(Product.main_list_image|no_image_product, 'save_image') }}" alt="{{ Product.name }}" {% if loop.index > 5 %} loading="lazy"{% endif %}>\r\n
                                        </a>\r\n
                                        <a href="{{ url('product_detail', {'id': Product.id}) }}" class="name">\r\n
                                            <p>{{ Product.name }}</p>\r\n
                                        </a>\r\n
                                        <div class="info">\r\n
                                            <div class="costs">\r\n
                                                <div class="cost">\r\n
                                                    {% if Product.hasProductClass %}\r\n
                                                        {% if Product.getPrice02Min == Product.getPrice02Max %}\r\n
                                                            <p>{{ Product.getPrice02IncTaxMin|price }}</p>\r\n
                                                            <span>(税込)</span>\r\n
                                                        {% else %}\r\n
                                                            <p>{{ Product.getPrice02IncTaxMin|price }} ~ {{ Product.getPrice02IncTaxMax|price }}</p>\r\n
                                                            <span>(税込)</span>\r\n
                                                        {% endif %}\r\n
                                                    {% else %}\r\n
                                                        <p>{{ Product.getPrice02IncTaxMin|price }}</p>\r\n
                                                        <span>(税込)</span>\r\n
                                                    {% endif %}\r\n
                                                </div>\r\n
    \r\n
                                                {% if BaseInfo.option_favorite_product %}\r\n
                                                    {% set is_favorite = false %}\r\n
                                                    {% if is_granted('ROLE_USER') %}\r\n
                                                        {% set is_favorite = repository('\\Eccube\\Entity\\CustomerFavoriteProduct').isFavorite(Customer, Product) %}\r\n
                                                    {% endif %}\r\n
                                                    {% if is_favorite == false %}\r\n
                                                        <div class="group" style="margin-top: 0;">\r\n
                                                            <div class="list-btn" style="margin-top: 0;">\r\n
                                                                <a href="javascript:void(0);" class="favorite">\r\n
                                                                    <span></span> \r\n
                                                                </a>\r\n
                                                            </div>\r\n
                                                        </div>\r\n
                                                    {% else %}                                                            \r\n
                                                        <div class="group" style="margin-top: 0;">\r\n
                                                            <div class="list-btn" style="margin-top: 0;">\r\n
                                                                <a href="javascript:void(0);" class="favorite active" disabled="disabled">\r\n
                                                                    <span></span> \r\n
                                                                </a>\r\n
                                                            </div>\r\n
                                                        </div>\r\n
                                                    {% endif %}\r\n
                                                {% endif %}\r\n
    \r\n
                                                {% if BaseInfo.option_favorite_product %}\r\n
                                                    <div style="display: none;">\r\n
                                                        <form class="list-add-favorite" action="{{ url('product_add_favorite', {id:Product.id}) }}" method="post">\r\n
                                                            <div class="ec-productRole__btn">\r\n
                                                                <button type="submit" id="favorite" class="ec-blockBtn--cancel">\r\n
                                                                    {{ 'お気に入りに追加'|trans }}\r\n
                                                                </button>\r\n
                                                            </div>\r\n
                                                        </form>\r\n
                                                    </div>\r\n
                                                {% endif %}\r\n
                                            </div>\r\n
                                            <div class="cate">\r\n
                                                {% if Product.ProductCategories is not empty %}\r\n
                                                    {% for ProductCategory in Product.ProductCategories %}\r\n
                                                        {% if ProductCategory.Category.Parent is not empty %}\r\n
                                                            {% set parentCat = ProductCategory.Category.Parent %}\r\n
                                                            {% if parentCat.id == 20 %}\r\n
                                                                <span>{{ ProductCategory.Category.name }}</span>\r\n
                                                            {% endif %}\r\n
                                                        {% endif %}\r\n
                                                    {% endfor %}\r\n
                                                {% endif %}\r\n
                                                {% if Product.ProductCategories is not empty %}\r\n
                                                    {% for ProductCategory in Product.ProductCategories %}\r\n
                                                        {% if ProductCategory.Category.Parent is not empty %}\r\n
                                                            {% set parentCat = ProductCategory.Category.Parent %}\r\n
                                                            {% if parentCat.id == 19 %}\r\n
                                                                <span>{{ ProductCategory.Category.name }}</span>\r\n
                                                            {% endif %}\r\n
                                                        {% endif %}\r\n
                                                    {% endfor %}\r\n
                                                {% endif %}\r\n
                                            </div>\r\n
                                            {% if Product.code_min is not empty %}\r\n
                                                <div class="des">\r\n
                                                    <p>品番 {{ Product.code_min }}{% if Product.code_min != Product.code_max %} ~ {{ Product.code_max }}{% endif %}</p>\r\n
                                                </div>\r\n
                                            {% endif %}                                        \r\n
                                        </div>\r\n
                                    </li>\r\n
                                {% endfor %}\r\n
                            {% endif %}\r\n
                        </ul>\r\n
                    </div>\r\n
                    \r\n
                </div>\r\n
                <div class="ec-loan_sec v4">\r\n
                    <div class="inner">\r\n
                        <div class="title">\r\n
                            <p>手続きの流れ</p>\r\n
                        </div>\r\n
                        <div class="text">\r\n
                            <p>審査フォームに必要事項を記載していただいて送信していただければ、最短で翌日にメールでご回答させていただきます。その後、エアココローン対象商品からエアコンを選んでいただき、設置工事が必要な方は設置工事費も含めてご契約をさせていただきます。</p>\r\n
                        </div>\r\n
                        <div class="list-item">\r\n
                            <div class="item">\r\n
                                <div class="num">\r\n
                                    <p>STEP</p>\r\n
                                    <span>1</span>\r\n
                                </div>\r\n
                                <div class="image">\r\n
                                    <img src="{{ asset('assets/img/loan') }}/step-1.png" alt="">\r\n
                                </div>\r\n
                                <div class="text-item">\r\n
                                    <p>審査フォーム送信</p>\r\n
                                </div>\r\n
                            </div>\r\n
                            <div class="arr">\r\n
                                <img src="{{ asset('assets/img/tel_service') }}/double_arrow.png" alt="">\r\n
                            </div>\r\n
                            <div class="item">\r\n
                                <div class="num">\r\n
                                    <p>STEP</p>\r\n
                                    <span>2</span>\r\n
                                </div>\r\n
                                <div class="image">\r\n
                                    <img src="{{ asset('assets/img/loan') }}/step-2.png" alt="">\r\n
                                </div>\r\n
                                <div class="text-item">\r\n
                                    <p>審査結果のご連絡</p>\r\n
                                </div>\r\n
                            </div>\r\n
                            <div class="arr">\r\n
                                <img src="{{ asset('assets/img/tel_service') }}/double_arrow.png" alt="">\r\n
                            </div>\r\n
                            <div class="item">\r\n
                                <div class="num">\r\n
                                    <p>STEP</p>\r\n
                                    <span>3</span>\r\n
                                </div>\r\n
                                <div class="image">\r\n
                                    <img src="{{ asset('assets/img/loan') }}/step-3.png" alt="">\r\n
                                </div>\r\n
                                <div class="text-item">\r\n
                                    <p>商品・工事費の算出</p>\r\n
                                </div>\r\n
                            </div>\r\n
                            <div class="arr">\r\n
                                <img src="{{ asset('assets/img/tel_service') }}/double_arrow.png" alt="">\r\n
                            </div>\r\n
                            <div class="item">\r\n
                                <div class="num">\r\n
                                    <p>STEP</p>\r\n
                                    <span>4</span>\r\n
                                </div>\r\n
                                <div class="image">\r\n
                                    <img src="{{ asset('assets/img/loan') }}/step-4.png" alt="">\r\n
                                </div>\r\n
                                <div class="text-item">\r\n
                                    <p>ご契約・ご購入</p>\r\n
                                </div>\r\n
                            </div>\r\n
                        </div>\r\n
                        <div class="list-btn">\r\n
                            <a href="{{ url('loan_examination') }}" class="btn btn-sd">\r\n
                                エアココ自社ローンのお申し込みはこちら\r\n
                            </a>\r\n
                        </div>\r\n
                    </div>\r\n
                </div>\r\n
            </div>\r\n
        </div>\r\n
    </div>\r\n
    \r\n
    {% endblock %}
    """
  #message: "Variable "pagination" does not exist."
  #code: 0
  #file: "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/app/template/user_data/loan.twig"
  #line: 272
  trace: {
    /home/gogo002/gogo002.xbiz.jp/public_html/rintec/app/template/user_data/loan.twig:272 {
      __TwigTemplate_2b2af53d187aa150283f28fd7f1f43169d90223fb21d69767771b12effe110de->{closure} …
      › <ul class="list-product">\r    {% if pagination.totalItemCount > 0 %}\r        {% for Product in pagination %}\r
    }
    /home/gogo002/gogo002.xbiz.jp/public_html/rintec/app/template/user_data/loan.twig:272 {
      __TwigTemplate_2b2af53d187aa150283f28fd7f1f43169d90223fb21d69767771b12effe110de->block_main($context, array $blocks = []) …
      › <ul class="list-product">\r    {% if pagination.totalItemCount > 0 %}\r        {% for Product in pagination %}\r
    }
    /home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/Template.php:182 {
      Twig\Template->displayBlock($name, array $context, array $blocks = [], $useBlocks = true, self $templateContext = null) …
      › try {    $template->$block($context, $blocks);} catch (Error $e) {
      arguments: {
        $context: [ …9]
        $blocks: [ …3]
      }
    }
    /home/gogo002/gogo002.xbiz.jp/public_html/rintec/var/cache/dev/twig/70/709c99be49c83bdd3e763efb7f111faa5cefbc7e972261f360cc7c0181eaa357.php:402 {
      __TwigTemplate_03b77a55ea879e04906386f7e7af730c76382c64b20c78137c8ffd883aff14b3->doDisplay(array $context, array $blocks = []) …
      › echo "            ";$this->displayBlock('main', $context, $blocks);// line 195
      arguments: {
        $name: "main"
        $context: [ …9]
        $blocks: [ …3]
      }
    }
    /home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/Template.php:405 {
      Twig\Template->displayWithErrorHandling(array $context, array $blocks = []) …
      › try {    $this->doDisplay($context, $blocks);} catch (Error $e) {
      arguments: {
        $context: [ …8]
        $blocks: [ …3]
      }
    }
    /home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/Template.php:378 {
      Twig\Template->display(array $context, array $blocks = []) …
      › {    $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));}
      arguments: {
        $context: [ …8]
        $blocks: [ …3]
      }
    }
    /home/gogo002/gogo002.xbiz.jp/public_html/rintec/src/Eccube/Twig/Template.php:41 {
      Eccube\Twig\Template->display(array $context, array $blocks = []) …
      › } else {    parent::display($event->getParameters(), $blocks);}
      arguments: {
        $context: []
        $blocks: []
      }
    }
    /home/gogo002/gogo002.xbiz.jp/public_html/rintec/var/cache/dev/twig/13/136ef3500474118ed099c63d3811eea92c90915ded1ad97618c62bf37227ae68.php:50 {
      __TwigTemplate_2b2af53d187aa150283f28fd7f1f43169d90223fb21d69767771b12effe110de->doDisplay(array $context, array $blocks = []) …
      › $this->parent = $this->loadTemplate("default_frame.twig", "@user_data/loan.twig", 1);$this->parent->display($context, array_merge($this->blocks, $blocks));arguments: {
        $context: [ …8]
        $blocks: [ …3]
      }
    }
    /home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/Template.php:405 {
      Twig\Template->displayWithErrorHandling(array $context, array $blocks = []) …
      › try {    $this->doDisplay($context, $blocks);} catch (Error $e) {
      arguments: {
        $context: [ …8]
        $blocks: [ …3]
      }
    }
    /home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/Template.php:378 {
      Twig\Template->display(array $context, array $blocks = []) …
      › {    $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));}
      arguments: {
        $context: [ …8]
        $blocks: [ …3]
      }
    }
    /home/gogo002/gogo002.xbiz.jp/public_html/rintec/src/Eccube/Twig/Template.php:41 {
      Eccube\Twig\Template->display(array $context, array $blocks = []) …
      › } else {    parent::display($event->getParameters(), $blocks);}
      arguments: {
        $context: []
        $blocks: []
      }
    }
    /home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/Template.php:390 {
      Twig\Template->render(array $context) …
      › try {    $this->display($context);} catch (\Throwable $e) {
      arguments: {
        $context: []
      }
    }
    /home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/TemplateWrapper.php:45 {
      Twig\TemplateWrapper->render(array $context = []): string …
      ›     // as it should only be used by internal code    return $this->template->render($context, \func_get_args()[1] ?? []);}
      arguments: {
        $context: []
        ...: {
          []
        }
      }
    }
    /home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/Environment.php:318 {
      Twig\Environment->render($name, array $context = []) …
      › {    return $this->load($name)->render($context);}
      arguments: {
        $context: []
      }
    }
    /home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/framework-bundle/Controller/AbstractController.php:258 {
      Symfony\Bundle\FrameworkBundle\Controller\AbstractController->renderView(string $view, array $parameters = []): string …
      › 
      ›     return $this->container->get('twig')->render($view, $parameters);}
      arguments: {
        $name: "@user_data/loan.twig"
        $context: []
      }
    }
    /home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/framework-bundle/Controller/AbstractController.php:266 {
      Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render(string $view, array $parameters = [], Response $response = null): Response …
      › {    $content = $this->renderView($view, $parameters);arguments: {
        $view: "@user_data/loan.twig"
        $parameters: []
      }
    }
    /home/gogo002/gogo002.xbiz.jp/public_html/rintec/src/Eccube/Controller/UserDataController.php:78 {
      Eccube\Controller\UserDataController->index(Request $request, $route) …
      › 
      ›     return $this->render($file);}
      arguments: {
        $view: "@user_data/loan.twig"
      }
    }
    /home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/http-kernel/HttpKernel.php:163 {
      Symfony\Component\HttpKernel\HttpKernel->handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response …
      › // call controller$response = $controller(...$arguments);arguments: {
        $request: Symfony\Component\HttpFoundation\Request {#14 …}
        $route: "loan"
      }
    }
    /home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/http-kernel/HttpKernel.php:75 {
      Symfony\Component\HttpKernel\HttpKernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true) …
      › try {    return $this->handleRaw($request, $type);} catch (\Exception $e) {
      arguments: {
        $request: Symfony\Component\HttpFoundation\Request {#14 …}
        $type: 1
      }
    }
    /home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/http-kernel/Kernel.php:202 {
      Symfony\Component\HttpKernel\Kernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true) …
      › try {    return $this->getHttpKernel()->handle($request, $type, $catch);} finally {
      arguments: {
        $request: Symfony\Component\HttpFoundation\Request {#14 …}
        $type: 1
        $catch: true
      }
    }
    /home/gogo002/gogo002.xbiz.jp/public_html/rintec/index.php:83 {$kernel = new Kernel($env, $debug);$response = $kernel->handle($request);$response->send();
      arguments: {
        $request: Symfony\Component\HttpFoundation\Request {#14 …}
      }
    }
  }
}
logger
Symfony\Bridge\Monolog\Logger {#567 …8}

Request Headers

Header Value
accept
"*/*"
authorization
""
connection
"close"
cookie
"eccube=f117a0af68b0168f717b0941c76a6f4d"
host
"gogo002.xbiz.jp"
user-agent
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
x-accel-expires
"60"
x-failure-cache-time
"0"
x-file-type
"normal"
x-forwarded-for
"216.73.216.219"
x-forwarded-host
"gogo002.xbiz.jp"
x-forwarded-port
"443"
x-forwarded-proto
"https"
x-forwarded-ssl
"on"
x-php-ob-level
"1"
x-real-ip
"216.73.216.219"
x-server-address
"162.43.105.40"
x-ua-device
"pc"
x-wp-access
"0"

Request Content

Request content not available (it was retrieved as a resource).

Response

Response Headers

Header Value
cache-control
"no-cache, private"
content-type
"text/html; charset=UTF-8"
date
"Tue, 24 Mar 2026 20:46:51 GMT"
set-cookie
"maintenance_token=deleted; expires=Mon, 24-Mar-2025 20:46:50 GMT; Max-Age=0; path=/; httponly"
x-debug-exception
"Variable%20%22pagination%22%20does%20not%20exist."
x-debug-exception-file
"%2Fhome%2Fgogo002%2Fgogo002.xbiz.jp%2Fpublic_html%2Frintec%2Fapp%2Ftemplate%2Fuser_data%2Floan.twig:272"
x-debug-token
"fa6086"

Cookies

Request Cookies

Key Value
eccube
"f117a0af68b0168f717b0941c76a6f4d"

Response Cookies

Key Value
maintenance_token
Symfony\Component\HttpFoundation\Cookie {#9627
  #name: "maintenance_token"
  #value: null
  #domain: null
  #expire: 1
  #path: "/"
  #secure: false
  #httpOnly: true
  -raw: false
  -sameSite: null
  -secureDefault: false
}

Session 5

Session Metadata

Key Value
Created
"Wed, 25 Mar 26 05:46:50 +0900"
Last used
"Wed, 25 Mar 26 05:46:51 +0900"
Lifetime
0

Session Attributes

Attribute Value
_csrf/https-Eccube\Form\Type\Front\CustomerLoginType
"-rDMlNOzjUuWvoVn0mfNPulWeZeWmZ0ZBcjwjZeOz4U"
_csrf/https-_token
"qWprFA5dsG5lGnHGisaeGcnkWHuQe_Mf3WNj0L1wLto"
_csrf/https-authenticate
"-9QqoH5OF2u3laMogdzTSD6grrqm3AgBdtUdSqbD190"
_csrf/https-contact
"4cF58YDeKKwUsHwvtbx4_HmGQKoJRpT-PALBxtWVVCc"

Session Usage

5 Usages
Stateless check enabled
Usage
Symfony\Component\Security\Core\Authentication\Token\Storage\UsageTrackingTokenStorage:44
[
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/security-core/Authentication/Token/Storage/UsageTrackingTokenStorage.php"
    "line" => 44
    "function" => "getMetadataBag"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/src/Eccube/Log/Processor/TokenProcessor.php"
    "line" => 34
    "function" => "getToken"
    "class" => "Symfony\Component\Security\Core\Authentication\Token\Storage\UsageTrackingTokenStorage"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/monolog/monolog/src/Monolog/Logger.php"
    "line" => 368
    "function" => "__invoke"
    "class" => "Eccube\Log\Processor\TokenProcessor"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/monolog/monolog/src/Monolog/Logger.php"
    "line" => 574
    "function" => "addRecord"
    "class" => "Monolog\Logger"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/security-http/Authentication/AuthenticatorManager.php"
    "line" => 99
    "function" => "debug"
    "class" => "Monolog\Logger"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/security-http/Firewall/AuthenticatorManagerListener.php"
    "line" => 34
    "function" => "supports"
    "class" => "Symfony\Component\Security\Http\Authentication\AuthenticatorManager"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/security-http/Authenticator/Debug/TraceableAuthenticatorManagerListener.php"
    "line" => 39
    "function" => "supports"
    "class" => "Symfony\Component\Security\Http\Firewall\AuthenticatorManagerListener"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/security-bundle/Debug/WrappedLazyListener.php"
    "line" => 38
    "function" => "supports"
    "class" => "Symfony\Component\Security\Http\Authenticator\Debug\TraceableAuthenticatorManagerListener"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/security-http/Firewall/AbstractListener.php"
    "line" => 25
    "function" => "supports"
    "class" => "Symfony\Bundle\SecurityBundle\Debug\WrappedLazyListener"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/security-bundle/Debug/TraceableFirewallListener.php"
    "line" => 73
    "function" => "__invoke"
    "class" => "Symfony\Component\Security\Http\Firewall\AbstractListener"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/security-http/Firewall.php"
    "line" => 92
    "function" => "callListeners"
    "class" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 117
    "function" => "onKernelRequest"
    "class" => "Symfony\Component\Security\Http\Firewall"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 230
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 59
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 154
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 139
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 75
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/http-kernel/Kernel.php"
    "line" => 202
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/index.php"
    "line" => 83
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
]
Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage:101
[
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/security-csrf/TokenStorage/SessionTokenStorage.php"
    "line" => 101
    "function" => "has"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/security-csrf/CsrfTokenManager.php"
    "line" => 72
    "function" => "hasToken"
    "class" => "Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/form/FormRenderer.php"
    "line" => 65
    "function" => "getToken"
    "class" => "Symfony\Component\Security\Csrf\CsrfTokenManager"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/var/cache/dev/twig/70/709c99be49c83bdd3e763efb7f111faa5cefbc7e972261f360cc7c0181eaa357.php"
    "line" => 57
    "function" => "renderCsrfToken"
    "class" => "Symfony\Component\Form\FormRenderer"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/Template.php"
    "line" => 405
    "function" => "doDisplay"
    "class" => "__TwigTemplate_03b77a55ea879e04906386f7e7af730c76382c64b20c78137c8ffd883aff14b3"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/Template.php"
    "line" => 378
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/src/Eccube/Twig/Template.php"
    "line" => 41
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/var/cache/dev/twig/13/136ef3500474118ed099c63d3811eea92c90915ded1ad97618c62bf37227ae68.php"
    "line" => 50
    "function" => "display"
    "class" => "Eccube\Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/Template.php"
    "line" => 405
    "function" => "doDisplay"
    "class" => "__TwigTemplate_2b2af53d187aa150283f28fd7f1f43169d90223fb21d69767771b12effe110de"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/Template.php"
    "line" => 378
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/src/Eccube/Twig/Template.php"
    "line" => 41
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/Template.php"
    "line" => 390
    "function" => "display"
    "class" => "Eccube\Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/TemplateWrapper.php"
    "line" => 45
    "function" => "render"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/Environment.php"
    "line" => 318
    "function" => "render"
    "class" => "Twig\TemplateWrapper"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/framework-bundle/Controller/AbstractController.php"
    "line" => 258
    "function" => "render"
    "class" => "Twig\Environment"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/framework-bundle/Controller/AbstractController.php"
    "line" => 266
    "function" => "renderView"
    "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/src/Eccube/Controller/UserDataController.php"
    "line" => 78
    "function" => "render"
    "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 163
    "function" => "index"
    "class" => "Eccube\Controller\UserDataController"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 75
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/http-kernel/Kernel.php"
    "line" => 202
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/index.php"
    "line" => 83
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
]
Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage:71
[
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/security-csrf/TokenStorage/SessionTokenStorage.php"
    "line" => 71
    "function" => "has"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/security-csrf/CsrfTokenManager.php"
    "line" => 73
    "function" => "getToken"
    "class" => "Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/form/FormRenderer.php"
    "line" => 65
    "function" => "getToken"
    "class" => "Symfony\Component\Security\Csrf\CsrfTokenManager"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/var/cache/dev/twig/70/709c99be49c83bdd3e763efb7f111faa5cefbc7e972261f360cc7c0181eaa357.php"
    "line" => 57
    "function" => "renderCsrfToken"
    "class" => "Symfony\Component\Form\FormRenderer"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/Template.php"
    "line" => 405
    "function" => "doDisplay"
    "class" => "__TwigTemplate_03b77a55ea879e04906386f7e7af730c76382c64b20c78137c8ffd883aff14b3"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/Template.php"
    "line" => 378
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/src/Eccube/Twig/Template.php"
    "line" => 41
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/var/cache/dev/twig/13/136ef3500474118ed099c63d3811eea92c90915ded1ad97618c62bf37227ae68.php"
    "line" => 50
    "function" => "display"
    "class" => "Eccube\Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/Template.php"
    "line" => 405
    "function" => "doDisplay"
    "class" => "__TwigTemplate_2b2af53d187aa150283f28fd7f1f43169d90223fb21d69767771b12effe110de"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/Template.php"
    "line" => 378
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/src/Eccube/Twig/Template.php"
    "line" => 41
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/Template.php"
    "line" => 390
    "function" => "display"
    "class" => "Eccube\Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/TemplateWrapper.php"
    "line" => 45
    "function" => "render"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/Environment.php"
    "line" => 318
    "function" => "render"
    "class" => "Twig\TemplateWrapper"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/framework-bundle/Controller/AbstractController.php"
    "line" => 258
    "function" => "render"
    "class" => "Twig\Environment"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/framework-bundle/Controller/AbstractController.php"
    "line" => 266
    "function" => "renderView"
    "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/src/Eccube/Controller/UserDataController.php"
    "line" => 78
    "function" => "render"
    "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 163
    "function" => "index"
    "class" => "Eccube\Controller\UserDataController"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 75
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/http-kernel/Kernel.php"
    "line" => 202
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/index.php"
    "line" => 83
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
]
Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage:75
[
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/security-csrf/TokenStorage/SessionTokenStorage.php"
    "line" => 75
    "function" => "get"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/security-csrf/CsrfTokenManager.php"
    "line" => 73
    "function" => "getToken"
    "class" => "Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/form/FormRenderer.php"
    "line" => 65
    "function" => "getToken"
    "class" => "Symfony\Component\Security\Csrf\CsrfTokenManager"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/var/cache/dev/twig/70/709c99be49c83bdd3e763efb7f111faa5cefbc7e972261f360cc7c0181eaa357.php"
    "line" => 57
    "function" => "renderCsrfToken"
    "class" => "Symfony\Component\Form\FormRenderer"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/Template.php"
    "line" => 405
    "function" => "doDisplay"
    "class" => "__TwigTemplate_03b77a55ea879e04906386f7e7af730c76382c64b20c78137c8ffd883aff14b3"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/Template.php"
    "line" => 378
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/src/Eccube/Twig/Template.php"
    "line" => 41
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/var/cache/dev/twig/13/136ef3500474118ed099c63d3811eea92c90915ded1ad97618c62bf37227ae68.php"
    "line" => 50
    "function" => "display"
    "class" => "Eccube\Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/Template.php"
    "line" => 405
    "function" => "doDisplay"
    "class" => "__TwigTemplate_2b2af53d187aa150283f28fd7f1f43169d90223fb21d69767771b12effe110de"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/Template.php"
    "line" => 378
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/src/Eccube/Twig/Template.php"
    "line" => 41
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/Template.php"
    "line" => 390
    "function" => "display"
    "class" => "Eccube\Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/TemplateWrapper.php"
    "line" => 45
    "function" => "render"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/Environment.php"
    "line" => 318
    "function" => "render"
    "class" => "Twig\TemplateWrapper"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/framework-bundle/Controller/AbstractController.php"
    "line" => 258
    "function" => "render"
    "class" => "Twig\Environment"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/framework-bundle/Controller/AbstractController.php"
    "line" => 266
    "function" => "renderView"
    "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/src/Eccube/Controller/UserDataController.php"
    "line" => 78
    "function" => "render"
    "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 163
    "function" => "index"
    "class" => "Eccube\Controller\UserDataController"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 75
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/http-kernel/Kernel.php"
    "line" => 202
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/index.php"
    "line" => 83
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
]
Eccube\Service\CartService:174
[
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/src/Eccube/Service/CartService.php"
    "line" => 174
    "function" => "get"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/src/Eccube/Service/CartService.php"
    "line" => 151
    "function" => "getSessionCarts"
    "class" => "Eccube\Service\CartService"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/src/Eccube/Twig/Extension/CartServiceExtension.php"
    "line" => 50
    "function" => "getCarts"
    "class" => "Eccube\Service\CartService"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/var/cache/dev/twig/4c/4cc1a422a67d45ad97d7d6a229777e74f3598731a30aee59580260a9d8e9fa8a.php"
    "line" => 52
    "function" => "get_all_carts"
    "class" => "Eccube\Twig\Extension\CartServiceExtension"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/Template.php"
    "line" => 405
    "function" => "doDisplay"
    "class" => "__TwigTemplate_f7773582379d9655e402298e91764795603300967df7a50d7077566f0437c93d"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/Template.php"
    "line" => 378
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/src/Eccube/Twig/Template.php"
    "line" => 41
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/Template.php"
    "line" => 390
    "function" => "display"
    "class" => "Eccube\Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/Extension/CoreExtension.php"
    "line" => 1290
    "function" => "render"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/var/cache/dev/twig/73/730971b52afc73b99ddea2f60ec6e21f74d4eb85b505811283c0b09306e472e6.php"
    "line" => 84
    "function" => "twig_include"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/Template.php"
    "line" => 405
    "function" => "doDisplay"
    "class" => "__TwigTemplate_4d07f94d1d68fa4c92b57485b20705d4ed032460dba7eec1b582e2a59a8b8fda"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/Template.php"
    "line" => 378
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/src/Eccube/Twig/Template.php"
    "line" => 41
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/Template.php"
    "line" => 390
    "function" => "display"
    "class" => "Eccube\Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/TemplateWrapper.php"
    "line" => 45
    "function" => "render"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/Environment.php"
    "line" => 318
    "function" => "render"
    "class" => "Twig\TemplateWrapper"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/src/Eccube/Twig/Extension/TwigIncludeExtension.php"
    "line" => 42
    "function" => "render"
    "class" => "Twig\Environment"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/var/cache/dev/twig/af/af21ec94d0a723cbbae8a00193838c76ba9b5943bcaecde832bfad32b8017082.php"
    "line" => 61
    "function" => "include_dispatch"
    "class" => "Eccube\Twig\Extension\TwigIncludeExtension"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/Template.php"
    "line" => 405
    "function" => "doDisplay"
    "class" => "__TwigTemplate_025c5db6562faa47ff6e7f5688a6efccdb31427f492bd815571c6bdd9be7531b"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/Template.php"
    "line" => 378
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/src/Eccube/Twig/Template.php"
    "line" => 41
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/Template.php"
    "line" => 390
    "function" => "display"
    "class" => "Eccube\Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/Extension/CoreExtension.php"
    "line" => 1290
    "function" => "render"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/var/cache/dev/twig/70/709c99be49c83bdd3e763efb7f111faa5cefbc7e972261f360cc7c0181eaa357.php"
    "line" => 322
    "function" => "twig_include"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/Template.php"
    "line" => 405
    "function" => "doDisplay"
    "class" => "__TwigTemplate_03b77a55ea879e04906386f7e7af730c76382c64b20c78137c8ffd883aff14b3"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/Template.php"
    "line" => 378
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/src/Eccube/Twig/Template.php"
    "line" => 41
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/var/cache/dev/twig/13/136ef3500474118ed099c63d3811eea92c90915ded1ad97618c62bf37227ae68.php"
    "line" => 50
    "function" => "display"
    "class" => "Eccube\Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/Template.php"
    "line" => 405
    "function" => "doDisplay"
    "class" => "__TwigTemplate_2b2af53d187aa150283f28fd7f1f43169d90223fb21d69767771b12effe110de"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/Template.php"
    "line" => 378
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/src/Eccube/Twig/Template.php"
    "line" => 41
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/Template.php"
    "line" => 390
    "function" => "display"
    "class" => "Eccube\Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/TemplateWrapper.php"
    "line" => 45
    "function" => "render"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/twig/twig/src/Environment.php"
    "line" => 318
    "function" => "render"
    "class" => "Twig\TemplateWrapper"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/framework-bundle/Controller/AbstractController.php"
    "line" => 258
    "function" => "render"
    "class" => "Twig\Environment"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/framework-bundle/Controller/AbstractController.php"
    "line" => 266
    "function" => "renderView"
    "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/src/Eccube/Controller/UserDataController.php"
    "line" => 78
    "function" => "render"
    "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 163
    "function" => "index"
    "class" => "Eccube\Controller\UserDataController"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 75
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/vendor/symfony/http-kernel/Kernel.php"
    "line" => 202
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gogo002/gogo002.xbiz.jp/public_html/rintec/index.php"
    "line" => 83
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
]

Flashes

Flashes

No flash messages were created.

Server Parameters

Server Parameters

Defined in .env

Key Value
(no data)

Defined as regular env variables

Key Value
APP_DEBUG
"1"
APP_ENV
"dev"
CONTEXT_DOCUMENT_ROOT
"/home/gogo002/gogo002.xbiz.jp/public_html"
CONTEXT_PREFIX
""
DATABASE_CHARSET
"utf8mb4"
DATABASE_SERVER_VERSION
"105"
DATABASE_URL
"mysql://gogo002_ec2:p95ndlngy8@localhost/gogo002_ec2"
DOCUMENT_ROOT
"/home/gogo002/gogo002.xbiz.jp/public_html"
ECCUBE_ADMIN_ALLOW_HOSTS
"[]"
ECCUBE_ADMIN_ROUTE
"administrator"
ECCUBE_AUTH_MAGIC
"SUaF1c6LCFedGqdJmLQPKxQGpKSRJOQ"
ECCUBE_COOKIE_PATH
"/rintec"
ECCUBE_CURRENCY
"JPY"
ECCUBE_FORCE_SSL
"0"
ECCUBE_LOCALE
"ja"
ECCUBE_TEMPLATE_CODE
"default"
ECCUBE_TIMEZONE
"Asia/Tokyo"
FCGI_ROLE
"RESPONDER"
FailureCacheTime
"0"
GATEWAY_INTERFACE
"CGI/1.1"
HTTPS
"on"
HTTP_ACCEPT
"*/*"
HTTP_AUTHORIZATION
""
HTTP_CONNECTION
"close"
HTTP_COOKIE
"eccube=f117a0af68b0168f717b0941c76a6f4d"
HTTP_HOST
"gogo002.xbiz.jp"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
HTTP_X_ACCEL_EXPIRES
"60"
HTTP_X_FAILURE_CACHE_TIME
"0"
HTTP_X_FILE_TYPE
"normal"
HTTP_X_FORWARDED_FOR
"216.73.216.219"
HTTP_X_FORWARDED_HOST
"gogo002.xbiz.jp"
HTTP_X_FORWARDED_PORT
"443"
HTTP_X_FORWARDED_PROTO
"https"
HTTP_X_FORWARDED_SSL
"on"
HTTP_X_REAL_IP
"216.73.216.219"
HTTP_X_SERVER_ADDRESS
"162.43.105.40"
HTTP_X_UA_DEVICE
"pc"
HTTP_X_WP_ACCESS
"0"
MAILER_DSN
"sendmail://localhost"
MEF_PROXY_ADDR
"162.43.105.40"
Ngx_Cache_NoCacheMode
"1"
Ngx_Cache_NormalFile
"1"
Ngx_Cache_StaticMode
"1"
PATH
"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin"
PHP_SELF
"/rintec/index.php"
PWD
"/home/userfastcgi/gogo002/gogo002.xbiz.jp"
QUERY_STRING
""
REDIRECT_FailureCacheTime
"0"
REDIRECT_HTTPS
"on"
REDIRECT_HTTP_AUTHORIZATION
""
REDIRECT_MEF_PROXY_ADDR
"162.43.105.40"
REDIRECT_Ngx_Cache_NoCacheMode
"1"
REDIRECT_Ngx_Cache_NormalFile
"1"
REDIRECT_Ngx_Cache_StaticMode
"1"
REDIRECT_STATUS
"200"
REDIRECT_UNIQUE_ID
"acL4O8JeNkCJFPVhatNlwQAAALA"
REDIRECT_URL
"/rintec/user_data/loan"
REMOTE_ADDR
"216.73.216.219"
REMOTE_PORT
"54884"
REQUEST_METHOD
"GET"
REQUEST_SCHEME
"https"
REQUEST_TIME
1774385211
REQUEST_TIME_FLOAT
1774385211.2784
REQUEST_URI
"/rintec/user_data/loan"
SCRIPT_FILENAME
"/home/gogo002/gogo002.xbiz.jp/public_html/rintec/index.php"
SCRIPT_NAME
"/rintec/index.php"
SERVER_ADDR
"162.43.105.40"
SERVER_ADMIN
"webmaster@gogo002.xbiz.jp"
SERVER_NAME
"gogo002.xbiz.jp"
SERVER_PORT
"443"
SERVER_PROTOCOL
"HTTP/1.1"
SERVER_SIGNATURE
""
SERVER_SOFTWARE
"Apache"
SHLVL
"0"
UNIQUE_ID
"acL4O8JeNkCJFPVhatNlwQAAALA"

Parent Request

Return to parent request (token = 6edfcf)

Key Value
_controller
"Eccube\Controller\UserDataController::index"
_firewall_context
"security.firewall.map.context.customer"
_remove_csp_headers
true
_route
"user_data"
_route_params
[
  "route" => "loan"
]
_security_firewall_run
"_security_customer"
_stopwatch_token
"a06b9a"
route
"loan"