SL | Operation Type | Machine Type | Operation Name | SMV | Target | Cycle Time | Cycles |
---|---|---|---|---|---|---|---|
{{ $i++ }} | {{ strtoupper($oe->sewing_process_type) }} | @php $machineType = App\Models\SewingProcessList::where( 'id', $oe->sewing_process_list_id, )->first(); // dd($machineType); @endphp {{ $machineType->machine_type }} {{-- @if ($machineType->machine_type == 'LSM') LOCK STITCH MACHINE @elseif ($machineType->machine_type == 'FLM') FLAT LOCK MACHINE @elseif ($machineType->machine_type == 'OLM') OVER LOCK MACHINE @elseif ($machineType->machine_type == 'NM') NORMAL MACHINES @else SPECIAL MACHINES @endif --}} | {{ ucwords($oe->sewing_process_name) }} | @php $smv = App\Models\SewingProcessList::where('id', $oe->sewing_process_list_id) ->pluck('smv') ->first(); $smv = number_format($smv, 2); @endphp {{ $smv }} | @php $standard_capacity = App\Models\SewingProcessList::where( 'id', $oe->sewing_process_list_id, ) ->pluck('standard_capacity') ->first(); $target = number_format($standard_capacity, 0); @endphp {{ $target }} | @php $standard_time_sec = App\Models\SewingProcessList::where( 'id', $oe->sewing_process_list_id, ) ->pluck('standard_time_sec') ->first(); $standard_time_sec = number_format($standard_time_sec, 0); @endphp {{ $standard_time_sec }} |
@if ($oe->sewing_process_avg_cycles == null)
@php
$modalId = $oe->id;
@endphp
@else
@php
$modalId = $oe->id;
@endphp
@endif |