@extends('layouts.main') @section('content')
{{ Form::open(['url' => 'cloudfund/propsearch', 'method' => 'POST', 'name' => 'form', 'id' => 'searchform']) }}
不動産クラウドファンディングデータ検索
{{ Form::label("itemname", "ファンド名" ,["class"=>"control-label btn"]) }} {{ Form::text("itemname", $request->itemname, ["class"=>"form-control", "id"=>"itemname"]) }} {{ Form::label("compname", "会社名" ,["class"=>"control-label btn"]) }} {{ Form::text("compname", $request->compname, ["class"=>"form-control", "id"=>"compname"]) }} {{ Form::label("pref", "立地都道府県" ,["class"=>"control-label btn"]) }} {{ Form::select('pref', $data_pref, $request->pref, ['class'=>'form-control', 'style'=>'width:150px', 'id'=>'pref']) }}
{{ Form::label("assume_share_rate", "利回り" ,["class"=>"control-label btn"]) }} {{ Form::text("assume_share_rate", $request->assume_share_rate, ["class"=>"form-control", "id"=>"assume_share_rate"]) }} {{ Form::label("invest_unit_one", "出資単位" ,["class"=>"control-label btn"]) }} {{ Form::text("invest_unit_one", $request->invest_unit_one, ["class"=>"form-control", "id"=>"invest_unit_one"]) }} {{ Form::label("invest_unit_total", "出資総額" ,["class"=>"control-label btn"]) }} {{ Form::text("invest_unit_total", $request->invest_unit_total, ["class"=>"form-control", "id"=>"invest_unit_total"]) }} {{ Form::label("operation_mode", "運用状態" ,["class"=>"control-label btn"]) }} {{ Form::checkbox('recruit_before', 1, @in_array( 1, $request->recruit_before), ['id'=> 'recruit_before']) }} {{ Form::label( 'recruit_before', '募集開始前', ["class"=>"control-label"]) }}  {{ Form::checkbox('recruit_now', 1, @in_array( 1, $request->recruit_now), ['id'=> 'recruit_now']) }} {{ Form::label( 'recruit_now', '募集中', ["class"=>"control-label"]) }}  {{ Form::checkbox('operation_now', 1, @in_array( 1, $request->operation_now), ['id'=> 'operation_now']) }} {{ Form::label( 'operation_now', '運用中', ["class"=>"control-label"]) }}  {{ Form::checkbox('end_maturity', 1, @in_array( 1, $request->end_maturity), ['id'=> 'end_maturity']) }} {{ Form::label( 'end_maturity', '満期終了', ["class"=>"control-label"]) }} 
{{ Form::submit(" 検索 ", ["class"=>"btn btn-success", "onClick" => "submitProcess(0);"]) }} {{ Form::hidden("download", "", ["class"=>"form-control", "id"=>"download"]) }} {{ Form::hidden("company_id", $request->company_id, ["class"=>"form-control", "id"=>"company_id"]) }} {{ Form::hidden("list_id", $request->list_id, ["class"=>"form-control", "id"=>"list_id"]) }} {{ Form::button("クリア", ["class"=>"btn btn-default clearForm"]) }}
{!! Form::close() !!} @if (count($datas) > 0)
検索結果: TOP > {{ $datas[0]->company_name }} > {{ $datas[0]->itemname }}
@foreach($datas as $data) @endforeach
物件名 募集総額(単位:万円) 想定利益(単位:万円) 住所 竣工 開業 構造 階建 地階 総戸数 駐車場 総床面積㎡ 敷地面積㎡ 権利形態 部屋タイプ1 戸数1 部屋タイプ2 戸数2 部屋タイプ3 戸数3 部屋タイプ4 戸数4
{{ $data->property_name }} {{ $data->total_amount }} {{ $data->expected_profit }} {{ $data->address }} {{ $data->complation }} {{ $data->opening }} {{ $data->construction }} {{ $data->number_floor }} {{ $data->under_floor }} {{ $data->number_total }} {{ $data->parking }} {{ $data->floor_space }} {{ $data->area_space }} {{ $data->rights_form }} {{ $data->floor_type1 }} {{ $data->unit1 }} {{ $data->floor_type2 }} {{ $data->unit2 }} {{ $data->floor_type3 }} {{ $data->unit3 }} {{ $data->floor_type4 }} {{ $data->unit4 }}
@if (count($data_chart) > 0)
@endif @if (count($data_chart) > 0)
レーダーチャート
@endif @if (count($datas) > 0)
Google Map
@endif
@elseif (count($datas) == 0 and $_SERVER["REQUEST_METHOD"] == "POST" )
検索結果
対象となるデータがありません
@endif
@endsection