@extends('layouts.app') @section('title', 'Machine Area Allocations') @section('content')

Machine Area Allocations

@include('manufacturing.partials.navigation')
Allocations Management
Add Allocation
@forelse($allocations as $allocation) @empty @endforelse
Area Code Area Name Machine Location Allocation Date Status Actions
{{ $allocation->area_code }} {{ $allocation->area_name }} {{ $allocation->machine->name ?? '' }} {{ $allocation->manufacturingLocation->name ?? '' }} {{ $allocation->allocation_date->format('d M Y') }} {{ $allocation->status_label }}
@csrf

No machine allocations found

Add Allocation
Showing {{ $allocations->firstItem() ?? 0 }} to {{ $allocations->lastItem() ?? 0 }} of {{ $allocations->total() }} entries
{{ $allocations->appends(request()->query())->links() }}
@endsection