mirror of
				https://github.com/cp6/my-idlers.git
				synced 2025-11-03 23:59:09 +00:00 
			
		
		
		
	
		
			
	
	
		
			11 lines
		
	
	
	
		
			484 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
		
		
			
		
	
	
			11 lines
		
	
	
	
		
			484 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>
							 |