@extends('layouts.app') @section('title', 'Deployment Requests') @section('page-title', 'Deployment Requests') @section('content')
| Request | Communicator | Station / Date | Requested By | Status | |
|---|---|---|---|---|---|
|
{{ $r->type === 'self' ? 'Self-Request' : 'Producer' }}
#{{ $r->id }}
|
@if($r->communicator)
{{ $r->communicator->name }}
@elseif($r->communicator_name)
{{ $r->communicator_name }}
Not in system
@else
—
@endif
|
{{ $r->station?->name ?? '—' }}
{{ $r->requested_date?->format('d M Y') }}
|
{{ $r->requestedBy?->name ?? '—' }} | {{ ucfirst($r->status) }} | {{ $r->status === 'pending' && Auth::user()->hasRole(['admin','supervisor']) ? 'Review' : 'View' }} |
| No requests found | |||||