@extends('adminlte::page') @section('title', '物件一覧') @section('content_header')

物件一覧

@stop @section('content')

検索条件

リセット
@foreach($properties as $property) @endforeach
都道府県 物件名 所在地 物件種別 区分 価格 入札期間 登録日時 操作
{{ $property->municipality->prefecture->name ?? '-' }} {{ $property->property_name }} {{ $property->address }} {{ $property->property_type }} {{ $property->division_type }} {{ number_format($property->base_price) }}円 @if($property->bidding_start_date && $property->bidding_end_date) {{ $property->bidding_start_date->format('Y/m/d') }} 〜 {{ $property->bidding_end_date->format('Y/m/d') }} @else - @endif {{ $property->created_at->format('Y/m/d') }}
基本情報
@if($property->property_number)
物件番号
{{ $property->property_number }}
@endif @if($property->property_type)
物件種別
{{ $property->property_type }}
@endif @if($property->division_type)
種別
{{ $property->division_type }}
@endif @if($property->address)
所在地
{{ $property->address }}
@endif
@if($property->base_price)
売却基準価額
{{ number_format($property->base_price) }}円
@endif @if($property->guarantee_price)
買受申出保証金
{{ number_format($property->guarantee_price) }}円
@endif @if($property->min_bid_price)
買受可能価額
{{ number_format($property->min_bid_price) }}円
@endif
期日情報
@if($property->listing_start_date)
公示開始日
{{ $property->listing_start_date->format('Y/m/d') }}
@endif @if($property->viewing_start_date)
閲覧開始日
{{ $property->viewing_start_date->format('Y/m/d') }}
@endif @if($property->bidding_start_date)
入札開始日
{{ $property->bidding_start_date->format('Y/m/d') }}
@endif
@if($property->bidding_end_date)
入札終了日
{{ $property->bidding_end_date->format('Y/m/d') }}
@endif @if($property->opening_date)
開札期日
{{ $property->opening_date->format('Y/m/d') }}
@endif @if($property->sale_decision_date)
売却決定期日
{{ $property->sale_decision_date->format('Y/m/d') }}
@endif
建物情報
@if($property->house_number)
家屋番号
{{ $property->house_number }}
@endif @if($property->building_number)
建物番号
{{ $property->building_number }}
@endif @if($property->usage_registry)
種類(登記)
{{ $property->usage_registry }}
@endif @if($property->usage_current)
種類(現況)
{{ $property->usage_current }}
@endif @if($property->structure_registry)
構造(登記)
{{ $property->structure_registry }}
@endif @if($property->structure_current)
構造(現況)
{{ $property->structure_current }}
@endif
@if($property->area_registry)
専有面積(登記)
{{ number_format($property->area_registry, 2) }}㎡
@endif @if($property->area_current)
専有面積(現況)
{{ number_format($property->area_current, 2) }}㎡
@endif @if($property->layout)
間取り
{{ $property->layout }}
@endif @if($property->built_year)
築年月
{{ $property->built_year }}
@endif @if($property->floor)
{{ $property->floor }}
@endif @if($property->total_units)
総戸数
{{ $property->total_units }}
@endif
その他情報
@if($property->land_rights)
敷地利用権
{{ $property->land_rights }}
@endif @if($property->management_fee)
管理費等
{{ number_format($property->management_fee) }}円
@endif @if($property->balcony_area)
バルコニー面積
{{ number_format($property->balcony_area, 2) }}㎡
@endif
@if($property->occupant)
占有者
{{ $property->occupant }}
@endif @if($property->ownership_share)
持分
{{ $property->ownership_share }}
@endif @if($property->appraisal_transportation)
評価書上の交通
{{ $property->appraisal_transportation }}
@endif @if($property->reference_transportation)
参考交通
{{ $property->reference_transportation }}
@endif
@if($properties->hasPages()) @endif
@stop @section('css') @stop @section('js') @stop