@extends('adminlte::page') @section('title', 'ファンド一覧') @section('content_header')
| サイト名 | ファンド名 | ステータス | ファンドタイプ | 目標金額 | 現在の集金額 | 都道府県 | 詳細住所 | 追加日時 | 更新日時 | 操作 |
|---|---|---|---|---|---|---|---|---|---|---|
| {{ $fund->crowdfundingSite->name }} | {{ $fund->name }} | @switch($fund->status) @case('draft') 準備中 @break @case('recruiting') 募集中 @break @case('funded') 成立 @break @case('operating') 運用中 @break @case('closed') 終了 @break @case('completed') 完了 @break @endswitch | {{ $fund->fund_type ?: '-' }} | {{ number_format($fund->target_amount) }}円 | {{ number_format($fund->current_amount) }}円 | {{ $fund->property_prefecture ?: '-' }} | {{ $fund->property_address_detail ?: '-' }} | {{ $fund->created_at->format('Y/m/d H:i') }} | {{ $fund->updated_at->format('Y/m/d H:i') }} | 詳細 |
| ファンドが見つかりません | ||||||||||