@extends('layouts.admin.app') @section('title') Update Run Sheet @stop @section('style') @endsection @section('main')
Manage Run Sheets
{!! Form::open(['method'=>'POST','action' => 'AdminRunSheetsController@store']) !!}
{!! Form::label('product_id', 'Product') !!}
{!! Form::label('bath', 'Batch') !!}

Batch # will be generated on add

{!! Form::label('date', 'Date') !!}
{!! Form::text('date', null, ['class'=>'form-control pull-right datepicker']) !!}
{!! Form::label('ingredient', 'Ingredient') !!} {!! Form::text('ingredients[name][]', null, ['class'=>'form-control','placeholder'=>'Ingredient','v-model'=>'ingredient.name']) !!}
{!! Form::label('quantity', 'Quantity') !!} {!! Form::text('ingredients[quantity][]', null, ['class'=>'form-control','placeholder'=>'Quantity','v-model'=>'ingredient.quantity']) !!}
{!! Form::label('measurement', 'Measurement') !!} {!! Form::select('ingredients[measurement][]', $measurements, null , ['class'=>'form-control','v-model'=>'ingredient.measurement']) !!}
{!! Form::label('ponumber', 'PO Number') !!} {!! Form::text('ingredients[ponumber][]', null, ['class'=>'form-control','placeholder'=>'PO Number','v-model'=>'ingredient.ponumber']) !!}
{!! Form::label('actions', 'Actions') !!}
{!! Form::label('date', 'Date') !!} {!! Form::text('records[date][]', null, ['class'=>'form-control','placeholder'=>'Date','v-model'=>'record.date']) !!}
{!! Form::label('temperature,', 'Temperature') !!} {!! Form::text('records[temperature][]', null, ['class'=>'form-control','placeholder'=>'Temperature','v-model'=>'record.temperature']) !!}
{!! Form::label('oven', 'Oven') !!} {!! Form::text('records[oven][]', null, ['class'=>'form-control','placeholder'=>'Oven','v-model'=>'record.oven']) !!}
{!! Form::label('timein', 'Time in') !!} {!! Form::text('records[timein][]', null, ['class'=>'form-control','placeholder'=>'Time in','v-model'=>'record.timein']) !!}
{!! Form::label('timeout', 'Time out') !!} {!! Form::text('records[timeout][]', null, ['class'=>'form-control','placeholder'=>'Time out','v-model'=>'record.timeout']) !!}
{!! Form::label('cook_time', 'Cook Time') !!}

@{{ cookTime }}

{!! Form::label('actions', 'Actions') !!}
{!! Form::label('production_date', 'Production Date') !!}
{!! Form::text('production_date', null, ['class'=>'form-control pull-right datepicker']) !!}
{!! Form::label('production_ph', 'Production pH') !!} {!! Form::text('production_ph', null, ['class'=>'form-control']) !!}
{!! Form::label('production_brine_ph', 'Production Brine pH') !!} {!! Form::text('production_brine_ph', null, ['class'=>'form-control']) !!}
{!! Form::label('check_date', 'Check Date') !!} {!! Form::text('check_date', null, ['class'=>'form-control']) !!}
{!! Form::label('check_ph', 'Check pH') !!} {!! Form::text('check_ph', null, ['class'=>'form-control']) !!}
{!! Form::label('check_brine_ph', 'Check Brine pH') !!} {!! Form::text('check_brine_ph', null, ['class'=>'form-control']) !!}
{!! Form::label('yield', 'Yield') !!} {!! Form::text('yield', null, ['class'=>'form-control']) !!}
{!! Form::label('status', 'Status') !!} {!! Form::select('status', $status, null , ['class'=>'form-control', 'placeholder'=>'Select Status']) !!}
{!! Form::label('notes', 'Notes') !!} {!! Form::textarea('notes', null, ['class'=>'form-control','rows'=>'4']) !!}
{!! Form::submit('Add Run Sheet', ['class'=>'btn btn-primary']) !!}
{!! Form::close() !!}
@stop @section('footer') @stop