@extends('layouts.app') @section('page-title', 'Requisitions') @section('content')
Manage and track your coach employment and engagement requests.
| Date Created | Requisition Details | Requested By | Proposed Coaches | Status | Actions |
|---|---|---|---|---|---|
|
{{ $req->created_at->format('d M Y') }}
{{ $req->created_at->format('h:i A') }}
|
{{ $req->title }}
@if($req->start_date && $req->end_date)
{{ \Carbon\Carbon::parse($req->start_date)->format('d M') }} – {{ \Carbon\Carbon::parse($req->end_date)->format('d M Y') }}
@endif
@if($req->engagement_type || $rateLabel)
|
@endif
@if($req->engagement_type)
{{ $req->engagement_type }}
@endif
@if($rateLabel)
({{ $rateLabel }})
@endif
|
{{ optional($req->user)->name ?? '—' }}
|
@forelse($req->proposedCoaches as $coach)
{{ $coach->full_name }}
@empty
—
@endforelse
|
{{ str_replace('_', ' ', $req->status) }} |
@if(($req->status === 'pending' || $authRole === 'Admin') && ($isOwnReq || in_array($authRole, ['Admin', 'Manager'])))
@endif
@if(!$isOwnReq && $myPendingApproval && in_array($req->status, ['pending', 'in_review']))
Review
@endif
|
| No requisitions found matching your criteria. | |||||