- サイト名
- {{ $fund->crowdfundingSite->name }}
- 外部ID
- {{ $fund->external_id }}
- URL
- {{ $fund->url }}
- ステータス
-
@switch($fund->status)
@case('draft')
下書き
@break
@case('recruiting')
募集中
@break
@case('funded')
成立
@break
@case('operating')
運用中
@break
@case('closed')
終了
@break
@case('completed')
完了
@break
@endswitch
- 運用状況
-
@if($fund->operation_status)
@switch($fund->operation_status)
@case('recruiting')
募集中
@break
@case('operating')
運用中
@break
@case('completed')
運用終了
@break
@case('suspended')
運用停止
@break
@default
{{ $fund->operation_status }}
@endswitch
@else
-
@endif
- 目標金額
- {{ number_format($fund->target_amount) }}円
- 現在の集金額
- {{ number_format($fund->current_amount) }}円
- 進捗率
- {{ number_format($fund->progress_rate, 1) }}%
- 最低投資額
- {{ number_format($fund->minimum_investment) }}円
- 予定利回り
- {{ $fund->expected_return_rate ? $fund->expected_return_rate . '%' : '-' }}
- 投資期間
- {{ $fund->investment_period_months ? $fund->investment_period_months . 'ヶ月' : '-' }}
- 募集開始日時
- {{ $fund->start_date ? $fund->start_date->format('Y/m/d H:i') : '-' }}
- 募集終了日時
- {{ $fund->end_date ? $fund->end_date->format('Y/m/d H:i') : '-' }}
- 申込期限
- {{ $fund->deadline ? $fund->deadline->format('Y/m/d H:i') : '-' }}
- 都道府県
- {{ $fund->property_prefecture ?: '-' }}
- 詳細住所
- {{ $fund->property_address_detail ?: '-' }}
- 物件種別
- {{ $fund->property_type ?: '-' }}
- 物件面積
- {{ $fund->property_size ? $fund->property_size . '㎡' : '-' }}
- 築年数
- {{ $fund->property_age ? $fund->property_age . '年' : '-' }}
- ファンドタイプ
- {{ $fund->fund_type ?: '-' }}
- 投資タイプ
- {{ $fund->investment_type ?: '-' }}
- 投資対象
- {{ $fund->investment_target ?: '-' }}
- 最小口数
- {{ $fund->minimum_shares ?: '-' }}
- 分配頻度
- {{ $fund->dividend_frequency ?: '-' }}
- 早期償還
- {{ $fund->early_redemption ?: '-' }}
- 優先劣後構造
- {{ $fund->priority_structure ?: '-' }}
- 作成日時
- {{ $fund->created_at->format('Y/m/d H:i:s') }}
- 更新日時
- {{ $fund->updated_at->format('Y/m/d H:i:s') }}
@if($fund->description)
説明
{!! nl2br(e($fund->description)) !!}
@endif
@if($fund->risk_factors)
リスク要因
{!! nl2br(e($fund->risk_factors)) !!}
@endif
@if($fund->investment_points)
投資のポイント
{!! nl2br(e($fund->investment_points)) !!}
@endif
@if($fund->property_info && count($fund->property_info) > 0)
物件詳細情報
@foreach($fund->property_info as $info)
@if(isset($info['key']) && isset($info['value']))
{{ $info['key'] }}: {{ $info['value'] }}
@endif
@endforeach
@endif