mirror of
				https://github.com/cp6/my-idlers.git
				synced 2025-11-04 08:09:09 +00:00 
			
		
		
		
	
		
			
	
	
		
			11 lines
		
	
	
	
		
			437 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
		
		
			
		
	
	
			11 lines
		
	
	
	
		
			437 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| 
								 | 
							
								<div class="input-group">
							 | 
						||
| 
								 | 
							
								    <div class="input-group-prepend"><span class="input-group-text">{{ $title ??'OS'}}</span></div>
							 | 
						||
| 
								 | 
							
								    <select class="form-control" name="{{$name ?? 'os_id'}}">
							 | 
						||
| 
								 | 
							
								        @foreach ($os as $o)
							 | 
						||
| 
								 | 
							
								            <option value="{{ $o['id'] }}" {{(isset($current) && (string)$current === (string)$o['id'])? 'selected' : ''}}>
							 | 
						||
| 
								 | 
							
								                {{ $o['name'] }}
							 | 
						||
| 
								 | 
							
								            </option>
							 | 
						||
| 
								 | 
							
								        @endforeach
							 | 
						||
| 
								 | 
							
								    </select>
							 | 
						||
| 
								 | 
							
								</div>
							 |