@extends('layouts.app') @section('content') @php // Centralize contact fallbacks once $contactPhone = site_setting('contact_phone') ?? '+91-9660771216'; $contactEmail = site_setting('contact_email') ?? 'help@kreditbharat.com'; // Normalize tel: link (digits only) $contactPhoneTel = preg_replace('/\D+/', '', $contactPhone); // Ensure $banks is an array to avoid "invalid argument" in @forelse $banks = is_iterable($banks ?? null) ? $banks : []; @endphp {{-- Sub Hero --}} Repay Loan {{-- Bank Details --}} Please Repay Your Payable Loan Amount Fast & Through The Following Bank @forelse ($banks as $bank) {{ e($bank['title'] ?? 'Bank Details Information') }} @foreach ($bank['rows'] ?? [] as $r) {{ e($r['label'] ?? '') }} {{ e($r['value'] ?? '') }} @endforeach @empty No bank details found right now. Please contact us at {{ $contactPhone }} or email {{ $contactEmail }} @endforelse @endsection