@extends('layouts.main') @section('content')
{{ Form::open(['url' => 'rentjournal/report', '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('yearmonth', 'データ取得年月', ["class"=>"control-label btn"]) }} {{ Form::select('yearmonth', $data_yearmonth, $request->yearmonth, ['class'=>'form-control', 'style'=>'width:150px', 'id'=>'yearmonth']) }}
{{ Form::label("nearline", "沿線" ,["class"=>"control-label btn"]) }} {{ Form::select('nearline', $data_line, $request->nearline, ['class'=>'form-control', 'style'=>'width:200px', 'id'=>'nearline', 'onChange' => 'makeList_Station()']) }} {{ Form::select('nearstation', $data_station, $request->nearstation, ['class'=>'form-control', 'style'=>'width:200px', 'id'=>'nearstation']) }} {{ Form::label('dataclass', '物件区分', ["class"=>"control-label btn"]) }} {{ Form::select('dataclass', $data_class, $request->dataclass, ['class'=>'form-control', 'style'=>'width:150px', 'id'=>'dataclass']) }}
{{ Form::submit(" 検索 ", ["class"=>"btn btn-success", "onClick" => "submitProcess(0);"]) }} {{ Form::submit("CSVダウンロード ", ["class" => "btn btn-warning csv", "onClick" => "submitProcess(1);"]) }} {{ Form::hidden("download", "", ["class"=>"form-control", "id"=>"download"]) }} {{ Form::button("クリア", ["class"=>"btn btn-default clearForm"]) }}
{!! Form::close() !!} @if (count($datas) > 0)
検索結果
@foreach ($datas as $data) @endforeach
物件区分 タイトル エリア1 エリア2 エリア3 郵便番号 住所 最寄路線1 最寄駅1 徒歩時間1 最寄路線2 最寄駅2 徒歩時間2 最寄路線3 最寄駅3 徒歩時間3 価格 管理費 敷金 礼金 保証金 敷引・償却 間取り 面積 向き 築年数 販売会社
{{ $data->classname }} {{ $data->title }} {{ $data->area1 }} {{ $data->area2 }} {{ $data->area3 }} {{ $data->zipcode }} {{ $data->address }} {{ $data->near_line1 }} {{ $data->near_station1 }} {{ $data->walk_time1 }} {{ $data->near_line2 }} {{ $data->near_station2 }} {{ $data->walk_time2 }} {{ $data->near_line3 }} {{ $data->near_station3 }} {{ $data->walk_time3 }} {{ $data->price_display }} {{ $data->manage_display }} {{ $data->deposit_display }} {{ $data->key_display }} {{ $data->warrant_display }} {{ $data->amort_display }} {{ $data->floor_plan }} {{ $data->area_display }} {{ $data->direct_display }} {{ $data->age_display }} {{ $data->sales_company }}
{!! $datas->appends(['address'=>$request->address, 'pref'=>$request->pref, 'city'=>$request->city, 'address'=>$request->address, 'yearmonth'=>$request->yearmonth, 'nearline'=>$request->nearline, 'nearstation'=>$request->nearstation, 'dataclass'=>$request->dataclass, 'download'=>'0'])->render() !!}
@elseif (count($datas) == 0 and $_SERVER["REQUEST_METHOD"] == "POST" )
検索結果
対象となるデータがありません
販売開始月を広げる(1月~12月の全て選択)、全データもクリックする、住所範囲を広げる(○○市○○町→○○市)、郵便番号を利用する等の対応をしてみてください。
@endif
@endsection