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

Incoming Operations

Enhanced construction materials receiving system

@can('warehouse.incoming.create')
@endcan
@endsection @section('content')
Debug Info: Layout loaded successfully. If you can see this message and the navigation sidebar, the layout is working correctly.
Current route: {{ request()->route()->getName() }}
filter_list Filters
clear Clear
list Operations List
@if($operations->count() > 0)
@foreach($operations as $operation) @endforeach
Operation # Type Date Supplier/Source MR Reference Status Actions
{{ $operation->operation_number }} {{ ucfirst(str_replace('_', ' ', $operation->operation_type)) }} {{ $operation->operation_date }} {{ $operation->supplier->name ?? '-' }} @if($operation->materialRequest) {{ $operation->materialRequest->material_request_number ?: 'MR-' . str_pad($operation->material_request_id, 6, '0', STR_PAD_LEFT) }} @else - @endif {{ ucfirst(str_replace('_', ' ', $operation->status)) }}
visibility @can('warehouse.incoming.edit') edit @endcan
@if($operations->hasPages())
{{ $operations->links() }}
@endif @else
inbox
No Operations Found

There are no incoming operations to display.

@can('warehouse.incoming.create') add Create First Operation @endcan
@endif
@endsection @push('styles') @endpush