@extends('frontend.layouts.partials.app') @section('title', 'Rate') @section('meta', 'Welcome to Goodwill Finance Pvt. Ltd.') @section('content')

{{ $rate->name }}

{!! $rate->description !!}
Rate Image
@isset($rate->image)

Rate Image

Rate Visual
@if ($rate->featurePointsDetails->isNotEmpty())

Salient Features

    @foreach ($rate->featurePointsDetails as $featurePoint)
  • {{ $featurePoint->feature_point_name }}
  • @endforeach
@endif
@endisset
@if (isset($rate->featureRequirementsDetails) && $rate->featureRequirementsDetails->isNotEmpty())

Required Documents

@endif @isset($rate->file)

Download Here

Please click below to download the file related to {{ $rate->name }}.

@endisset
{{-- Search Form --}}
@if ($featureFilesDetails->isNotEmpty())

Documents

@foreach ($featureFilesDetails as $featureFile)
{{ $featureFile->product_file_name }}
Download
@endforeach
{{ $featureFilesDetails->appends(request()->query())->onEachSide(1)->links('vendor.pagination.tailwind-custom') }}
@endif
@endsection