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

{{ $service->name }}

{!! $service->description !!}
Service Image
@isset($service->image)

Service Image

Service Visual
@if ($service->featurePointsDetails->isNotEmpty())

Salient Features

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

Required Documents

@endif @isset($service->file)

Download Here

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

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

Documents

@forelse ($service->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