@foreach($article_list as $item)
    <div class="mb-3 mansion-list">
        <table class="p-results-noimage__tbl">
            <tr>
                <td rowspan="2" class="p-results-noimage__tbl-num-date">
                    <p><span class="p-results-noimage__tbl-number">分譲地ID</span><br>{{$item->building_id}}</p>
                    <p class="mt-1">
                        @if($item->lot_count)
                            <a href="javascript:void(0);" class="p-results-current-condition__panel--btn-delete disp_room_noimage" name="show_room_btn">売出({{$item->lot_count}}) <i class="fa fa-caret-down"></i></a>
                        @else
                            <span class="p-results-current-condition__panel--btn-delete disp_room_noimage" name="show_room_btn">売出({{$item->lot_count}}) </span>
                        @endif
                    </p>
                </td>
                <th class="w70">物件名</th>
                <td class="w250">
                    <div class="d-flex justify-content-between">
                        <p>{{$item->name}}</p>
                        <a href="javascript:void(0);" class="p-results-image__li-link-mansion" id="bttnParentDetail{{$item->building_id}}" class="p-results-noimage__tbl-link-mansion">
                        <!-- <a href="/business/editMansion/{{$item->building_id}}" class="p-results-noimage__tbl-link-mansion"> -->
                            <img src="../../business/img/icon_detail.png">
                        </a>
                    </div>
                </td>
                <th class="w70">住所</th><td>{{$item->address}}</td>
                <th class="w70">学校区</th><td class="w250">
                    @if($item->primary_school_name or $item->secondary_school_name)
                        {{$item->primary_school_name?? "-"}}/{{$item->secondary_school_name?? "-"}}
                    @else
                        -
                    @endif
                </td>
            </tr>
            <tr>
                <th class="w100">総区画数</th>
                <td>@if($item->section){{$item->section}}区画@else-@endif</td>
                <th>交通</th><td>
                    @include('business.objects.projects.traffic-info-summary', ['article' => $item])
                </td>
                <th></th><td></td>
            </tr>
        </table>
        @php
            $arrLot = $item->lot_list->pluck('building_id')->toArray();
        @endphp
        @foreach($item->lot_list as $lot)
            @php
                $url = "";
                if($lot->property < 4) {
                    $url = '/admin/editLand/'.$lot->building_id;
                } else {
                    $url = '/admin/editHouse/'.$lot->building_id;
                }

            @endphp
            <div @if($item->show_ite == true) class="p-mansion-room p-mansion-room-show" @else class="p-mansion-room" @endif>
                <table class="p-mansion-room__tbl">
                    <tr>
                        <td class="p-mansion-room__tbl-number w90" rowspan="2">物件番号<br>
                            @include('business.objects.components.link', ['url' => $url, 'title' => $lot->building_id, 'class' => 'p-form-check__tbl-link-id'])
                        </td>
                        <th>物件名</th>
                        <td class="w250">{{$lot->name}}</td>
                        <th>種別</th>
                        <td class="w120">{{$lot->property_name}}</td>
                        <th>土地</th>
                        <td class="w120">{{$lot->land_area_val?? '-'}}m&sup2;</td>
                        <th>間取り</th>
                        <td class="w100">{{$lot->floor_plan_text?? '-'}}</td>
                        <td class="w100"></td>
                        <td colspan="3" rowspan="2" class="no-print">
                            <ul class="p-results-image__li-btns d-flex justify-content-end list-unstyled">
                                @if(!isset($print))
                                    <li>
                                        @include('business.objects.components.circle-btn-mansion',
                                            ['id' => 'btnCheck', 'class' => 'c-circle-btn__check-mansion_noimage', 'linkUrl' => '#',
                                            'img' => '../../business/img/icon_check.png', 'title' => '確認'])
                                    </li>
                                    <li>
                                        @include('business.objects.components.circle-btn-mansion',
                                            ['id' => 'btnDetail'.$item->building_id, 'class' => 'c-circle-btn__detail', 'linkUrl' => 'javascript:void(0);',
                                            'img' => '../../business/img/icon_detail.png', 'title' => '詳細'])
                                    </li>
                                @endif
                            </ul>
                        </td>
                    </tr>
                    <tr>
                        <th>価格</th>
                        <td>{{number_format($lot->price, 0, ",", ",")}}<span>万円@if($lot->tax==2)（税込）@endif</span></td>
                        <th>築年月</th>
                        <td>{{$lot->age_year}}年{{$lot->age_month}}月</td>
                        <th>延床</th>
                        <td>{{$lot->total_area_val}}m&sup2;</td>
                        <th>階数</th>
                        <td>{{$lot->floor}}階建</td>
                        <td><img src="/admin/img/icon_camera.png" alt="写真">{{$lot->file_count}}</td>
                    </tr>
                </table>

                @php
                    $uuid = \Ramsey\Uuid\Uuid::uuid4();
                @endphp
                {{-- 確認ボタンクリック時に表示する --}}
                @include('business.objects.projects.form-check-lot', ['data_num' => $uuid, 'history_count' => count($lot->history)])
                @include('business.objects.projects.modal-history', ['history' => $lot->history, 'data_num' => $uuid])
            </div>
        @endforeach
    </div>
@endforeach
