| 
									
										
										
										
											2019-09-18 20:21:09 +02:00
										 |  |  | @extends('layout.default') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | @section('title', $__t('Quantity unit plural form testing')) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | @section('viewJsName', 'quantityunitpluraltesting') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-28 19:27:18 +01:00
										 |  |  | @push('pageStyles') | 
					
						
							| 
									
										
										
										
											2020-08-31 20:32:50 +02:00
										 |  |  | <link href="{{ $U('/node_modules/animate.css/animate.min.css?v=', true) }}{{ $version }}" | 
					
						
							|  |  |  | 	rel="stylesheet"> | 
					
						
							| 
									
										
										
										
											2019-09-18 20:21:09 +02:00
										 |  |  | @endpush | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | @section('content') | 
					
						
							| 
									
										
										
										
											2020-04-19 08:51:02 -04:00
										 |  |  | <div class="row"> | 
					
						
							|  |  |  | 	<div class="col"> | 
					
						
							|  |  |  | 		<h2 class="title">@yield('title')</h2> | 
					
						
							|  |  |  | 	</div> | 
					
						
							|  |  |  | </div> | 
					
						
							| 
									
										
										
										
											2020-10-31 18:37:10 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-08 15:09:10 +01:00
										 |  |  | <hr class="my-2"> | 
					
						
							| 
									
										
										
										
											2020-10-31 18:37:10 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-18 20:21:09 +02:00
										 |  |  | <div class="row"> | 
					
						
							|  |  |  | 	<div class="col-lg-6 col-xs-12"> | 
					
						
							| 
									
										
										
										
											2020-08-31 20:32:50 +02:00
										 |  |  | 		<form id="quantityunitpluraltesting-form" | 
					
						
							|  |  |  | 			novalidate> | 
					
						
							| 
									
										
										
										
											2019-09-18 20:21:09 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			<div class="form-group"> | 
					
						
							|  |  |  | 				<label for="qu_id">{{ $__t('Quantity unit') }}</label> | 
					
						
							| 
									
										
										
										
											2020-08-31 20:32:50 +02:00
										 |  |  | 				<select class="form-control" | 
					
						
							|  |  |  | 					id="qu_id" | 
					
						
							|  |  |  | 					name="qu_id"> | 
					
						
							| 
									
										
										
										
											2019-09-18 20:21:09 +02:00
										 |  |  | 					<option></option> | 
					
						
							|  |  |  | 					@foreach($quantityUnits as $quantityUnit) | 
					
						
							| 
									
										
										
										
											2020-08-31 20:32:50 +02:00
										 |  |  | 					<option value="{{ $quantityUnit->id }}" | 
					
						
							|  |  |  | 						data-singular-form="{{ $quantityUnit->name }}" | 
					
						
							|  |  |  | 						data-plural-form="{{ $quantityUnit->name_plural }}">{{ $quantityUnit->name }}</option> | 
					
						
							| 
									
										
										
										
											2019-09-18 20:21:09 +02:00
										 |  |  | 					@endforeach | 
					
						
							|  |  |  | 				</select> | 
					
						
							|  |  |  | 			</div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			@include('components.numberpicker', array( | 
					
						
							| 
									
										
										
										
											2020-08-31 20:32:50 +02:00
										 |  |  | 			'id' => 'amount', | 
					
						
							|  |  |  | 			'label' => 'Amount', | 
					
						
							| 
									
										
										
										
											2020-10-20 13:08:54 -05:00
										 |  |  | 			'min' => '0.' . str_repeat('0', $userSettings['stock_decimal_places_amounts'] - 1) . '1', | 
					
						
							|  |  |  | 			'decimals' => $userSettings['stock_decimal_places_amounts'], | 
					
						
							| 
									
										
										
										
											2020-08-31 20:32:50 +02:00
										 |  |  | 			'isRequired' => false, | 
					
						
							|  |  |  | 			'value' => 1 | 
					
						
							| 
									
										
										
										
											2019-09-18 20:21:09 +02:00
										 |  |  | 			)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		</form> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		<h2><strong>{{ $__t('Result') }}:</strong> <span id="result"></span></h2> | 
					
						
							|  |  |  | 	</div> | 
					
						
							|  |  |  | </div> | 
					
						
							|  |  |  | @stop |