@extends('admin.layout') @section('content')

{{ trans('Mask Machine Order Instruction') }}

@php $getUserRoleData = userRoleData(); $OrderInstruction = explode(",",$getUserRoleData->OrderInstruction); @endphp
@if(session()->has('message'))

{{ trans('labels.Successlabel') }}

{{ session()->get('message') }}
@endif @if(session()->has('error'))

{{ trans('labels.WarningLabel') }}

{{ session()->get('error') }}
@endif
{!! Form::open([ 'url' => route('mask-machine-order-instructions.update', [$result['order_instructions']->id]), 'method'=>'post', 'class' => 'form-horizontal', 'id' => 'addMaskMachineOrderInstruction', 'enctype'=>'multipart/form-data']) !!} @method('put')
{{ trans('labels.back') }}
{!! Form::select('company_id', $result['Company_info'], $result['order_instructions']->company_id, array('class'=>'form-control company_id', 'multiple'=>'', 'id'=>'company_id', 'required'=>'required')) !!}
@php $i = 1; @endphp @foreach($result['order_instructions']->get_mask_machine_order_instruction_details as $key) @php $i++; @endphp @endforeach
S N. Part Number Description GSM Size Remarks Add/Remove
Layer {{$i}} @if($i == 1) @else @endif
{!! Form::close() !!}
@endsection @section('scripts') @endsection