@extends('frontend.layouts.app') @section('title') Product Proposal @endsection @section('style') @endsection @section('content')

Products

@include('frontend.proposal.products-filter')

Product

@csrf
@if ($products->isNotEmpty()) @foreach ($products as $index => $product)
bank-logo {{-- {{ chr(65 + $index) }} --}}
{{ $product->bank->name }}
Rate Fixed For 3 Years {!! $product->interest_rate_int !!}%
Follow On Rate {!! $product->follow_on_rate_details !!}
Loan to Value {{ $product->loan_to_value }}
Islamic / Conventional {{ $product->mortgage_types_display }}
{{--
{{ chr(65 + $index) }}
Bank {{ chr(65 + $index) }}
Rate fixed for 3 years Follow On Rate Loan to Value Islamic / Conventional
{!! $product->interest_rate_int !!}% {!! $product->follow_on_rate_details !!} {{ $product->loan_to_value }} {{ $product->mortgage_types_display }}
--}}
@endforeach @endif
@endsection @section('script') @endsection