@extends('layouts.admin.app') @section('title') Add Run Sheets @stop @section('style') @endsection @section('main')
Manage Run Sheets
{!! Form::open(['method'=>'POST','action' => 'AdminRunSheetsController@store']) !!}
{!! Form::label('product_id', 'Product') !!} @if ($errors->has('product_id')) {{ $errors->first('product_id') }} @endif
{!! Form::label('bath', 'Batch') !!}

Batch # will be generated on add

{!! Form::label('date', 'Date') !!}
{!! Form::text('date', null, ['class'=>'form-control pull-right datepicker datemask']) !!}
@if ($errors->has('date')) {{ $errors->first('date') }} @endif
{!! 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', null, ['class'=>'form-control pull-right datepicker datemask']) !!}
{!! 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 pull-right datepicker datemask']) !!}
{!! 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