@extends('layouts.public') @section('content')

お気に入り

← ファンド一覧へ
@if (count($ids) === 0)

お気に入りはまだありません。

@endif
@foreach($funds as $fund)
{{ $fund->name }}
{{ optional($fund->crowdfundingSite)->name }}
利回り: {{ $fund->expected_return_rate ? number_format($fund->expected_return_rate, 2) . '%' : '-' }}
募集: ¥{{ number_format($fund->target_amount, 0) }}
@csrf @method('DELETE')
@endforeach
{{ $funds->links('vendor.pagination.public') }}
@endsection