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

Production Card : edit

Page for edit Production Card

@switch($productionCard->status) @case(false) Not complete @break @case(true) Complete @break @default @endswitch
@csrf @method('PUT')
@error('no')
{{ $message }}
@enderror
@error('date')
{{ $message }}
@enderror
@error('start_production')
{{ $message }}
@enderror
@error('finish_production')
{{ $message }}
@enderror
@error('bom_template_no')
{{ $message }}
@enderror
@error('currency_code')
{{ $message }}
@enderror
@error('labor_per_hour')
{{ $message }}
@enderror
@error('overhead')
{{ $message }}
@enderror

Production Card Headers

Add some headers for your Production Card

@foreach ($productionCard->headers as $header) @endforeach
Finish Good Code Finish Good Name UoM Color Target Qty Remarks Actions
@if ($header->finishGood->image_path) img @endif
@if ($header->details->isEmpty()) No details available @endif {{ $header->finish_good_code }} {{ $header->finishGood->name }} {{ $header->finishGood->uom_code }} {{ $header->finishGood->color_code }} {{ $header->target_qty }} {{ $header->remarks }}

Are you sure want to delete this ? .

@csrf @method('DELETE')

Are you sure you want to delete this Production Card?

@csrf @method('DELETE')

Are you sure you want to save and complete this Production Card?

@csrf @method('PUT')
@foreach ($productionCard->headers as $header) @endforeach @endsection @section('js') @endsection