@extends('layouts.main') @section('content')
{{ Form::open(['url' => 'rentanalyse/index', 'method' => 'POST', 'name' => 'form', 'id' => 'searchform']) }}
賃貸分析インジケーター
{{ Form::label("address", "住所" ,["class"=>"control-label btn"]) }} {{ Form::select('pref', $data_pref, $request->pref, ['class'=>'form-control validate[required]', 'style'=>'width:120px', 'id'=>'pref', 'onChange' => 'makeList_City();']) }} {{ Form::select('city', $data_city, $request->city, ['class'=>'form-control validate[required]', 'style'=>'width:150px', 'id'=>'city', 'onChange' => 'makeList_Line();']) }} {{ Form::text("address", $request->address, ["class"=>"form-control", 'style'=>'width:200px', "id"=>"address"]) }} {{ Form::label("nearline", "沿線" ,["class"=>"control-label btn"]) }} {{ Form::select('nearline', $data_line, $request->nearline, ['class'=>'form-control', 'style'=>'width:49%', 'id'=>'nearline', 'onChange' => 'makeList_Station()']) }} {{ Form::select('nearstation', $data_station, $request->nearstation, ['class'=>'form-control', 'style'=>'width:49%', 'id'=>'nearstation']) }}
※沿線にはバス路線も含まれます
{{ Form::label('yearmonth', 'データ取得年月', ["class"=>"control-label btn"]) }} {{ Form::select('yearmonth', $data_yearmonth, $request->yearmonth, ['class'=>'form-control', 'style'=>'width:150px', 'id'=>'yearmonth']) }} {{ Form::label("saleprice", "希望賃料" ,["class"=>"control-label btn"]) }} {{ Form::text("saleprice", $request->saleprice, ["class"=>"form-control validate[required,custom[number]]", "id"=>"saleprice", "style"=>"width:100px"]) }} 円
※コンマ無しで入力してください。
(例5.5万円→55000)
{{ Form::label('dataclass', '物件区分', ["class"=>"control-label btn"]) }} {{ Form::select('dataclass', $data_class, $request->dataclass, ['class'=>'form-control', 'style'=>'width:150px', 'id'=>'dataclass']) }}
{{ Form::label("floortype", "部屋タイプ" ,["class"=>"control-label btn"]) }} @foreach ($data_floor as $data) {{ Form::checkbox('floor[]', $data, @in_array( $data, $request->floor), ['class' => "validate[minCheckbox[1]]", 'id'=> 'floortype' . $i]) }} {{ Form::label( 'floortype' . $i, $data, ["class"=>"control-label"]) }}  @endforeach
{{ Form::submit(" 検索 ", ["class"=>"btn btn-success", "onClick" => "submitProcess(0);"]) }} {{ Form::hidden("download", "", ["class"=>"form-control", "id"=>"download"]) }} {{ Form::button("クリア", ["class"=>"btn btn-default clearForm"]) }}
{!! Form::close() !!} @if (count($data_summary) > 0 and $_SERVER["REQUEST_METHOD"] == "POST")
各種平均値
データ数 {{ number_format($data_summary[0]->datacount) }} 件 平均徒歩時間 {{ number_format($data_summary[0]->walktime) }} 分 平均賃料 {{ number_format($data_summary[0]->price) }} 円 平均管理費 {{ number_format($data_summary[0]->manage) }} 円 平均敷金 {{ number_format($data_summary[0]->deposit) }} 円 平均礼金 {{ number_format($data_summary[0]->keymoney) }} 円 平均保証金 {{ number_format($data_summary[0]->warrant) }} 円 平均面積 {{ number_format($data_summary[0]->area) }} m² 平均築年数 {{ number_format($data_summary[0]->age) }} 年
凡例:
1:1K/1DK/1LDK
2:2K/2DK/2LDK
3:3K/3DK/3LDK
4:4K/4DK/4LDK
5:5K/5DK/5LDK
6:その他
下落率(%)={{ $rateinc }} × 年
@elseif (count($data_summary) == 0 and $_SERVER["REQUEST_METHOD"] == "POST" )
検索結果
対象となるデータがありません
住所範囲を広げる(○○市○○町→○○市)等の対応をしてみてください。
@endif
@endsection