You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							30 lines
						
					
					
						
							1.0 KiB
						
					
					
				
			
		
		
	
	
							30 lines
						
					
					
						
							1.0 KiB
						
					
					
				@if(count($combinations) > 0)
 | 
						|
    <table class="table table-bordered">
 | 
						|
        <thead>
 | 
						|
        <tr>
 | 
						|
            <td class="text-center">
 | 
						|
                <label for="" class="control-label">{{translate('messages.Variant')}}</label>
 | 
						|
            </td>
 | 
						|
            <td class="text-center">
 | 
						|
                <label for="" class="control-label">{{translate('messages.Variant Price')}}</label>
 | 
						|
            </td>
 | 
						|
        </tr>
 | 
						|
        </thead>
 | 
						|
        <tbody>
 | 
						|
 | 
						|
        @foreach ($combinations as $key => $combination)
 | 
						|
            <tr>
 | 
						|
                <td>
 | 
						|
                    <label for="" class="control-label">{{ $combination['type'] }}</label>
 | 
						|
                </td>
 | 
						|
                <td>
 | 
						|
                    <input type="number" name="price_{{ $combination['type'] }}"
 | 
						|
                           value="{{$combination['price']}}" min="0"
 | 
						|
                           step="0.01"
 | 
						|
                           class="form-control" required>
 | 
						|
                </td>
 | 
						|
            </tr>
 | 
						|
        @endforeach
 | 
						|
        </tbody>
 | 
						|
    </table>
 | 
						|
@endif
 | 
						|
 |