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

{{ $deposit->name }}

{!! $deposit->description !!}
Deposit Image
@isset($deposit->image)

Deposit Image

Deposit Visual
@if ($deposit->featurePointsDetails->isNotEmpty())

Salient Features

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

Required Documents

@endif @isset($deposit->file)

Download Here

Please click below to download the file related to {{ $deposit->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
@if (isset($featureFiles) && $featureFiles->isNotEmpty())

Documents

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

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

@endforelse
Page {{ $featureFiles->currentPage() }} of {{ $featureFiles->lastPage() }}
{{ $featureFiles->links('pagination::tailwind') }}
@endif
@endsection