@extends('layouts.app') @section('title', 'أمر عمل جديد - '.config('app.name')) @section('breadcrumb') الرئيسية › التصنيع › أوامر العمل › أمر عمل جديد @endsection @section('content') @php $oldLines = old('lines'); if (! is_array($oldLines)) { $oldLines = []; } $woBomOptions = $bomLists->map(fn ($b) => ['value' => $b->id, 'label' => $b->name.' — '.$b->version])->all(); $woWhOptions = $warehouses->map(fn ($w) => ['value' => $w->id, 'label' => $w->code.' — '.$w->name_ar])->all(); $woMachineOptions = $machines->map(fn ($m) => ['value' => $m->id, 'label' => $m->code.' — '.$m->name_ar])->all(); @endphp
@push('scripts') @endpush @endsection