Application Report

Application No: {{ $application->application_number }}

Applicant Details

Customer {{ $application->customer->full_name ?? 'N/A' }}
Service {{ $application->service->name ?? 'N/A' }}
Office {{ $application->office->name ?? 'N/A' }}

Project Details

Project Name {{ $application->project_name ?? 'N/A' }}
Project Type {{ $application->project_type ?? 'N/A' }}
Sub-City {{ $application->project_sub_city ?? 'N/A' }}
Woreda {{ $application->project_woreda ?? 'N/A' }}

Application Status

Status {{ ucfirst($application->status) }}
Assigned Officer {{ optional($application->assignments->first()->officer)->name ?? 'Not Assigned' }}
Assigned Date {{ optional($application->assignments->first())->created_at ? optional($application->assignments->first())->created_at->format('d M Y') : 'N/A' }}
@if($application->witnesses->count() > 0)

Invited Officers

    @foreach($application->witnesses as $witness)
  • {{ $witness->officer->name }} ({{ $witness->officer->department->department_name ?? 'N/A' }})
  • @endforeach
@endif @if($application->status == 'rejected')
Rejection Reason: {{ $application->reject_reason }}
@endif

Attachments

@if($application->files) Download Documents @else

No files uploaded.

@endif @if($application->proposal_file) Download Proposal @else

No proposal file uploaded.

@endif