@extends('layouts.master') @section('content')

Form Tambah Work Order Baru

@csrf
@if(!empty($wo)) @foreach ($wo->product as $i => $row)
{{ strtoupper($row->product_name)}}
{{ $row->qty}}
{{ $row->unit}}
{{ $row->total_unit}}
@foreach ($row->chip as $key => $rc)
{{ strtoupper($rc->chip) }}
@endforeach
@endforeach @endif
@if(Auth::user()->roles->first()->name == 'Teritori Manager') Batal @endif @if(Auth::user()->roles->first()->name == 'Operational Manager') Batal @endif
@endsection