@extends('layouts.main') @section('content')
{{ 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 |
データ数 | {{ 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) }} 年 |
---|