@include('business.objects.projects.for-sale-print-button')

<div class="p-print-box">
<div class="head-print">
    <div class="print_header">
        <p class="f-left"><b>
                @if(strstr($_SERVER["REQUEST_URI"],'close'))
                    成約物件
                @else
                    売出物件
                @endif
            </b></p>
        @php
        if(isset($set_count)){
            $count = $set_count;
        }else{
            $count = $items->count();
        } @endphp
        @if(!empty($hide_items))
        <p class="f-right"><b>該当件数：{{$count - count($items->whereIn('building_id', $hide_items))}}</b></p>
        @else
            <p class="f-right"><b>該当件数：{{$count}}</b></p>
        @endif
        <div class="clear"></div>
        <hr>
    </div>
</div>
@foreach($items as $item)
<section class="p-print">
    @include('business.objects.projects.for-sale-print-main-sheet-detail')
</section>
<section class="p-print">
    <div class="sheet p-pdf">
    @if(!empty($item->disp_sheet_file))
    <img width="100%" src="{{$url}}{{$item->disp_sheet_file}}" style="max-height: 794px; height: 100%;"/>
    @else
    <img width="100%" src="{{ root('img/noimage2.jpg')}} " style="max-height: 794px; height: 100%;"/>
    @endif
    </div>
</section>
@endforeach
</div>
