@extends('layouts.main') @section('content')
{{ Form::open(['url' => 'cloudfund/compsearch', '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::button("クリア", ["class"=>"btn btn-default clearForm"]) }}
{!! Form::close() !!} @if (count($datas) > 0)
検索結果
@foreach($datas as $data) @endforeach
会社名 上場 代表者名 住所 TEL 設立 資本金 決算期 宅建免許 不特法許可 第二種登録 賃貸業登録 顧問業登録 その他免許 参照URL
{{ $data->company_name }} {{ $data->listed }} {{ $data->representative }} {{ $data->address }} {{ $data->tel }} {{ $data->establish }} {{ $data->capital }} {{ $data->closing_period }} {{ $data->housing_license }} {{ $data->cloud_license }} {{ $data->nisyu_license }} {{ $data->loan_license }} {{ $data->fudosan_license }} {{ $data->other_license }} {{ $data->url }}
@elseif (count($datas) == 0 and $_SERVER["REQUEST_METHOD"] == "POST" )
検索結果
対象となるデータがありません
@endif
@endsection