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

{{ $loan->name }}

{!! $loan->description !!}
Loan Image
@isset($loan->image)

Loan Image

Loan Visual
@if ($loan->featurePointsDetails->isNotEmpty())

Salient Features

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

Required Documents

@endif @isset($loan->file)

Download Here

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

@endisset
@if (isset($loan->featureFilesDetails) && $loan->featureFilesDetails->isNotEmpty())

Documents

@forelse ($loan->featureFilesDetails as $featureFile)
{{ $featureFile->product_file_name }}
Download
@empty

We're preparing new content for you. It will be available here soon.

@endforelse
@endif
@endsection