@php use Illuminate\Support\Facades\Storage; @endphp @extends('layouts.app') @section('title', 'No Objection Certificate') @section('page-title', 'No Objection Certificate') @section('content')
No Objection Certificate (NOC)
Back
@if($loan->partner->logo) @else
@endif
{{ $loan->partner->company_name ?? $loan->partner->name }}
@if($loan->partner->address) {{ $loan->partner->address }}
@endif @if($loan->partner->phone) {{ $loan->partner->phone }} @endif @if($loan->partner->whatsapp) | {{ $loan->partner->whatsapp }} @endif @if($loan->partner->email)
{{ $loan->partner->email }} @endif
No Objection Certificate

Date: {{ now()->format('d F Y') }}

Certificate No: NOC-{{ $loan->loan_number }}

To Whom It May Concern,

This is to certify that {{ $loan->customer->name }} (Customer Code: {{ $loan->customer->customer_code }}) has availed a loan facility from our organization with the following details:

Loan Number: {{ $loan->loan_number }}
Loan Amount: ₹{{ number_format($loan->total_amount, 2) }}
Principal Amount: ₹{{ number_format($loan->principal_amount, 2) }}
Disbursement Date: {{ $loan->disbursement_date->format('d F Y') }}
Maturity Date: {{ $loan->maturity_date->format('d F Y') }}
Loan Status: {{ ucfirst($loan->status) }} @if($loan->status === 'active') - Outstanding Amount: ₹{{ number_format($loan->remaining_amount, 2) }} @endif
Paid Amount: ₹{{ number_format($loan->paid_amount, 2) }}
Remaining Amount: ₹{{ number_format($loan->remaining_amount, 2) }}

We have NO OBJECTION if the above-mentioned customer wishes to:

  • Avail any other financial facility from other institutions
  • Transfer or close the account with us
  • Undertake any other financial transactions

This certificate is issued at the request of the customer and is valid for the purpose stated above.

This certificate is issued without any liability on our part and is subject to the customer clearing all outstanding dues, if any.

For {{ $loan->partner->company_name ?? $loan->partner->name }}

{{ $loan->partner->company_name ?? $loan->partner->name }}
Authorized Signatory
STAMP
{{ now()->format('d M Y') }}
@endsection