@extends('layouts.pdf')
@section('title')
Residential NOC Letter - {{$product->owner->name}}
@endsection
@section('content')
@include('admin.maintenance.partial.pdf.letter_head')
@php
$has_tenant = $product->owner_id != $product->product_owner_id;
$noc_type = ($has_tenant) ? 'TENANT' : 'OWNER';
if($product->tenant->is_authorized){
$noc_type = 'Authority';
}
@endphp
{{ $noc_type }} NOC
Date:{{date(config('settings.date_format'), strtotime(date('Y-m-d')))}}
{!! $content !!}
_______________________
Manager Facilitation
{{--
Security Department:
Kindly note & inform the security staff at the gate to allow entry of luggage.
--}}
@stop