@include('layouts.header', ['title' => 'View Allotment Request'])
@include('layouts.navbar') @include('layouts.sidebar')

View Allotment Request

{{ $allotmentRequest->project->name }}
{{ $allotmentRequest->project->site_location }}
{{ $allotmentRequest->application_id }}
{{ $allotmentRequest->allotment_no }}
{{ $allotmentRequest->description }}
@if ($allotmentRequest->status > 3)
@if ($allotmentRequest->status == 4) Approved @elseif ($allotmentRequest->status == 5) Rejected @endif
@if ($allotmentRequest->file)
@endif @if ($allotmentRequest->remark)
{{ $allotmentRequest->remark }}
@endif @endif
@if ($allotmentRequest->status == 3)

Update Status

@csrf @method('PUT')
@error('approval_status')
{{ $message }}
@enderror
{{-- File input - shown only if Accept is selected --}} {{-- Remarks field (always visible) --}}
@error('remarks')
{{ $message }}
@enderror
@endif @include('layouts.footer')