@extends('layouts.admin.app') @section('title') Edit Run Sheet @stop @section('style') @endsection @section('main')
Manage Run Sheets
{!! Form::open(['method'=>'PUT','action' => ['AdminRunSheetsController@update',$run_sheet->id]]) !!}
{!! Form::label('product_id', 'Product') !!}

{{$run_sheet->product->name}} ({{$run_sheet->product->sku}})

{!! Form::label('bath', 'Batch') !!}

{{$batch['sku']}}-{{$batch['year']}}-@{{batch}}

{!! Form::label('date', 'Date') !!}
{!! Form::text('date', $run_sheet->date, ['class'=>'form-control pull-right datepicker datemask']) !!}
{!! Form::label('ingredient', 'Ingredient') !!}
{!! Form::label('quantity', 'Quantity') !!}
{!! Form::label('measurement', 'Measurement') !!}
{!! Form::label('ponumber', 'PO Number') !!}
{!! Form::label('actions', 'Actions') !!}
{!! Form::label('date', 'Date') !!}
{!! Form::label('temperature,', 'Temperature') !!}
{!! Form::label('oven', 'Oven') !!}
{!! Form::label('timein', 'Time in') !!}
{!! Form::label('timeout', 'Time out') !!}
{!! Form::label('cook_time', 'Cook Time') !!}
{!! Form::label('actions', 'Actions') !!}

@{{ cookTime(record.timein,record.timeout) }}

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