Asset Allocation

{{ $allocation->allocation_number }}

Project:{{ $allocation->project ? $allocation->project->project_name : '-' }}Status:{{ ucfirst($allocation->status) }}
Requested By:{{ $allocation->requester ? $allocation->requester->name : '-' }}Date:{{ $allocation->created_at ? $allocation->created_at->format('M d, Y') : '-' }}
Purpose:{{ $allocation->purpose ?? '-' }}
@foreach($allocation->items as $i => $item) @endforeach
#Asset CodeAsset NameCategoryCondition
{{ $i + 1 }} {{ $item->fixedAsset ? $item->fixedAsset->asset_code : '-' }} {{ $item->fixedAsset ? $item->fixedAsset->asset_name : '-' }} {{ $item->fixedAsset && $item->fixedAsset->category ? $item->fixedAsset->category->category_name : '-' }} {{ ucfirst($item->condition_at_allocation ?? '-') }}