Prequalification for {{ $procurement->reference }} Prequalification Management @php $statusColors = [ 'draft' => 'badge-gray', 'pending_submission' => 'badge-amber', 'published' => 'badge-blue', 'evaluating' => 'badge-purple', 'shortlisted' => 'badge-teal', 'pending_approval' => 'badge-amber', 'approved' => 'badge-green', 'rejected' => 'badge-red', ]; @endphp
Prequalification Details for {{ $procurement->reference }}
@csrf
status != 'draft') disabled @endif>
Status & Actions
Current Status
{{ ucfirst(str_replace('_', ' ', $pq->status ?? 'Draft')) }}
@if($pq)
@if($pq->status == 'draft')
@csrf
@endif @if($pq->status == 'published')
@csrf
@endif @if($pq->status == 'evaluating')
@csrf
@endif @if($pq->status == 'shortlisted')
@csrf
@endif @if($pq->status == 'pending_approval') @can('approveShortlist', $pq)
Shortlist Approval
@csrf
@else

Shortlist is pending approval.

@endcan @endif
@endif
@if($pq && $pq->status == 'rejected')
Rejection Comment

{{ $pq->shortlist_rejection_comment }}

@endif