{{ 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"]) }}