@extends('layouts.admin-simple') @section('title', 'Asset Allocations') @section('breadcrumb')
Manage asset allocations to projects
| # | Allocation # | Project | Assets | Requested By | Date | Status | Actions |
|---|---|---|---|---|---|---|---|
| {{ $allocations->firstItem() + $i }} | {{ $alloc->allocation_number }} |
{{ $alloc->project ? $alloc->project->project_name : '-' }} | {{ $alloc->items->count() }} | {{ $alloc->requester ? $alloc->requester->name : '-' }} | {{ $alloc->created_at ? $alloc->created_at->format('M d, Y') : '-' }} | @php $colors = ['pending_approval' => 'warning', 'partially_allocated' => 'info', 'allocated' => 'success', 'cancelled' => 'secondary', 'draft' => 'secondary']; $labels = ['pending_approval' => 'Pending Allocation', 'partially_allocated' => 'Partially Allocated']; @endphp {{ $labels[$alloc->status] ?? ucfirst(str_replace('_', ' ', $alloc->status)) }} | |
| No allocations found. | |||||||