@extends('layouts.app') @section('title', __('manufacturing::lang.production')) @section('content') @include('manufacturing::layouts.nav')

@lang('manufacturing::lang.production')

{!! Form::open(['url' => action([\Modules\Manufacturing\Http\Controllers\ProductionController::class, 'store']), 'method' => 'post', 'id' => 'production_form', 'files' => true ]) !!} @component('components.widget', ['class' => 'box-solid'])
{!! Form::label('ref_no', __('purchase.ref_no').':') !!} @show_tooltip(__('manufacturing::lang.ref_no_tooltip')) {!! Form::text('ref_no', null, ['class' => 'form-control']); !!}
{!! Form::label('transaction_date', __('manufacturing::lang.mfg_date') . ':*') !!}
{!! Form::text('transaction_date', @format_datetime('now'), ['class' => 'form-control', 'readonly', 'required']); !!}
{!! Form::label('location_id', __('purchase.business_location') . ':*') !!} {!! Form::select('location_id', $business_locations, null, ['class' => 'form-control select2', 'required'] ) !!}
{!! Form::label('variation_id', __('sale.product').':*') !!} {!! Form::select('variation_id', $recipe_dropdown, null, ['class' => 'form-control select2', 'placeholder' => __('messages.please_select'), 'required', 'id' => 'variation_id']); !!}


@show_tooltip(__('manufacturing::lang.finalize_tooltip'))
@endcomponent {!! Form::close() !!}
@endsection @section('javascript') @endsection