@extends('layouts.admin-simple') @section('title', 'Incoming Operations Dashboard') @section('content')

input Incoming Operations

Enhanced construction materials receiving system

clear Clear
Operations List
@if($operations->count() > 0)
@foreach($operations as $operation) @endforeach
Operation # Type Date Supplier/Source Project Status Total (د.إ) Actions
{{ $operation->operation_number }} {{ $operation->operation_type_label }} {{ $operation->operation_date->format('d M Y') }} @if($operation->supplier) {{ $operation->supplier->name }} @else {{ ucfirst(str_replace('_', ' ', $operation->operation_type)) }} @endif @if($operation->project) {{ $operation->project->project_name }} @else - @endif {{ ucfirst(str_replace('_', ' ', $operation->status)) }} {{ $operation->formatted_total_amount_aed }}
visibility @if($operation->status !== 'completed') edit @endif @if($operation->needsInspection()) @endif @if($operation->isApproved())
@csrf
@endif
@else
inbox
No Operations Found

Create your first incoming operation to get started.

add Create Operation
@endif
@endsection @push('styles') @endpush