選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

delete-bank-connection-modal.blade.php 350B

123456
  1. <span>Are you sure you want to delete your {{ $institution->name }} connection? Deleting this bank connection will remove the following connected accounts:</span>
  2. <ul class="list-disc list-inside p-2">
  3. @foreach($institution->connectedBankAccounts as $connectedBankAccount)
  4. <li>{{ $connectedBankAccount->name }}</li>
  5. @endforeach
  6. </ul>