@extends('layouts.app') @section('title', 'Customer Download Requests') @section('nav-items')
| Customer | Resource | Type | Status | Requested | Actions |
|---|---|---|---|---|---|
|
{{ $req->name }}
{{ $req->email }}
@if($req->company)
{{ $req->company }}
@endif
|
{{ $req->resource_name }}
|
{{ str_replace('_', ' ', $req->resource_type) }} | {{ ucfirst($req->status) }} |
{{ $req->created_at->format('M d, Y') }}
{{ $req->created_at->diffForHumans() }}
|
@if($req->isPending())
{{ $req->status === 'approved' ? 'Approved' : 'Rejected' }} by {{ $req->approver->name }}
{{ $req->approved_at->format('M d, Y') }}
@endif
@endif
|
|
No download requests found |
|||||