@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 }}
|
{{ $r->communicator?->name ?? '—' }}
|
{{ $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 | |||||