@extends('layouts.admin-simple') @section('title', 'Incoming Operations Dashboard') @section('content')
Enhanced construction materials receiving system
| 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())
@endif
|