@extends('layouts.app') @section('title', $bom->name.' - '.config('app.name')) @section('breadcrumb') الرئيسية التصنيع قوائم المواد {{ $bom->name }} @endsection @section('content') @php $statusLabels = \App\Models\BomList::statusLabels(); @endphp
@if(session('success'))
{{ session('success') }}
@endif

{{ $bom->name }}

{{ $bom->finishedItem?->code }} — {{ $bom->finishedItem?->name_ar }} {{ $statusLabels[$bom->status] ?? $bom->status }}

الإصدار {{ $bom->version }}
تكلفة العمالة {{ number_format((float) $bom->labor_cost, 2) }}
التكاليف العامة {{ number_format((float) $bom->overhead_cost, 2) }}
@if($bom->header_notes)
ملاحظات {{ $bom->header_notes }}
@endif
المكونات
@foreach($bom->lines as $line) @endforeach
الخامة الكمية الوحدة الهدر % ملاحظات
{{ $line->componentItem?->code }} — {{ $line->componentItem?->name_ar }} {{ rtrim(rtrim(number_format((float) $line->quantity, 4, '.', ''), '0'), '.') ?: '0' }} {{ $line->unit ?: '—' }} {{ rtrim(rtrim(number_format((float) $line->scrap_percent, 2, '.', ''), '0'), '.') ?: '0' }} {{ $line->notes ?: '—' }}
@endsection