my-idlers/resources/views/components/locations-select.blade.php
cp6 d3125170e6 Fixed locations cache
Fixed locations cache
2022-05-09 15:00:33 +10:00

12 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>