@extends('layouts.pdf') @section('title') Electrical Inspection Certificate | Inspectorate @endsection @section('styles') @endsection @section('content')
APPROVED
ELECTRICAL
STANDARDS

Electrical Inspection Certificate

Property Inspection & Compliance Verification

Inspectorate Department

This is to certify that the electrical installation and layout design for the property located at {{ $request->property_address }}, {{ $request->property_city }}, {{ $request->property_state }} has been thoroughly inspected and evaluated by the Inspectorate Department.

Inspection Details
Certificate Number: CERT-{{ $request->request_number }}
Property Type: {{ ucfirst($request->property_type) }}
Inspection Type: {{ ucfirst(str_replace('_', ' ', $request->request_type)) }}
Request Status: {{ ucfirst($request->status) }}
Owner Name: {{ $request->user->name }}
Submitted Date: {{ $request->created_at->format('M d, Y') }}
Approval Date: {{ $request->updated_at->format('M d, Y') }}
Last Updated: {{ $request->updated_at->diffForHumans() }}

Property Address: {{ $request->property_address }}
{{ $request->property_city }}, {{ $request->property_state }} {{ $request->property_pincode }}
@if($request->latitude && $request->longitude)
Coordinates: {{ $request->latitude }}, {{ $request->longitude }}
@endif
Description: {{ $request->description }}
@if($request->inspectionDocuments->count() > 0)
Uploaded Documents:
@foreach($request->inspectionDocuments as $document)
@if(str_contains($document->mime_type, 'pdf')) @else @endif
{{ $document->file_name }}
{{ $document->getFormattedFileSizeAttribute() }}
{{ ucfirst($document->status) }}
@endforeach
@endif

After comprehensive evaluation, the Inspectorate Department hereby certifies that the electrical layout and design meets all required safety standards and building codes as per the national electrical regulations.

✓ APPROVED FOR ELECTRICAL STANDARDS

The property electrical system is deemed safe and compliant for use.

This certificate is issued based on the inspection conducted and remains valid subject to regular maintenance and compliance with electrical safety standards. Any modifications to the electrical system should be reported and re-inspected.

@endsection