mirror of
				https://github.com/cp6/my-idlers.git
				synced 2025-10-29 21:48:23 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			494 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			494 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>
 |