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

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

{!! Form::open(['url' => action([\Modules\Manufacturing\Http\Controllers\ProductionController::class, 'storeMultiple']), 'method' => 'post', 'id' => 'multiple_production_form']) !!}
{!! Form::select('default_location', $business_locations, null, ['id' => 'default_location', 'class' => 'form-control select2']) !!} قم بتحديد الفرع الافتراضي لتحميل جميع الوصفات.*

@lang('sale.product') @lang('lang_v1.quantity') @lang('lang_v1.price') @lang('manufacturing::lang.unit_cost') @lang('purchase.business_location') @lang('messages.action')
0 {!! Form::select('productions[0][location_id]', $business_locations, null, ['class' => 'form-control select2', 'required']) !!}
@lang('manufacturing::lang.total') @lang('manufacturing::lang.total_quantity') : 0 @lang('manufacturing::lang.total_cost') : 0
{!! Form::close() !!}
@endsection @php $recipe_options = []; foreach($all_recipes as $id => $name) { $recipe_options[] = ['id' => $id, 'text' => $name]; } @endphp @section('javascript') @endsection