@extends('components.customer_layout') @section('customer-content')
Application ID: {{ $application->id }}
Status: {{ $application->status}} {{ ucfirst($application->status) }}
Area: {{ $application->area }} sq. meters
Height: {{ $application->height }} meters
Cart Number: {{ $application->carta_number }}
Issue Date: {{ $application->issue_date }}
Customer Name: {{ $application->customer->full_name ?? 'N/A' }}
Service Name: {{ $application->service->name ?? 'N/A' }}
Service Type: {{ $application->serviceType->name ?? 'N/A' }}
Office: {{ $application->office->name ?? 'N/A' }}
Is Paid: {{ $application->is_paid ? 'Yes' : 'No' }}
Ordered: {{ $application->is_ordered ? 'Yes' : 'No' }}
Viewed by Officer: {{ $application->is_view_by_officer ? 'Yes' : 'No' }}
Rejected by Officer: {{ $application->is_rejected_by_officer ? 'Yes' : 'No' }}
Accepted by Officer: {{ $application->is_accept_by_officer ? 'Yes' : 'No' }}
Approved by Leader: {{ $application->is_approved_by_leader ? 'Yes' : 'No' }}
Rejected by Leader: {{ $application->is_rejected_by_leader ? 'Yes' : 'No' }}
City: {{ $application->city }}
Subcity: {{ $application->subcity }}
Woreda: {{ $application->woreda }}