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

Incoming Operations

Enhanced construction materials receiving system

@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() }}
list Operations List
@if($operations->count() > 0)
@foreach($operations as $operation) @endforeach
Operation # Type Date Supplier/Source Status Total (AED) Actions
{{ $operation->operation_number }} {{ ucfirst(str_replace('_', ' ', $operation->operation_type)) }} {{ $operation->operation_date }} {{ $operation->supplier->name ?? '-' }} {{ ucfirst(str_replace('_', ' ', $operation->status)) }} {{ number_format($operation->total_amount_aed ?? 0, 2) }} visibility
@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