@extends('layouts.admin-simple') @section('title', 'Pending Allocation') @section('breadcrumb') @endsection @section('page-title')

Pending Allocation

Allocations waiting to be assigned to projects

arrow_back Back
@endsection @section('content')
@forelse($allocations as $i => $alloc) @empty @endforelse
#Allocation #ProjectAssetsRequested ByDateActions
{{ $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') : '-' }} Review
No pending allocations.
@if($allocations->hasPages()) @endif
@endsection