mirror of
				https://github.com/cp6/my-idlers.git
				synced 2025-10-31 14:29:09 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			500 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			500 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <div class="input-group">
 | |
|     <div class="input-group-prepend"><span class="input-group-text">{{ $title ??'Location'}}</span></div>
 | |
|     <select class="form-control" name="{{$name ?? 'location_id'}}">
 | |
|         @foreach ($locations as $location)
 | |
|             <option
 | |
|                 value="{{ $location['id'] }}" {{(isset($current) && (string)$current === (string)$location['id'])? 'selected' : ''}}>
 | |
|                 {{ $location['name'] }}
 | |
|             </option>
 | |
|         @endforeach
 | |
|     </select>
 | |
| </div>
 |