We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cf1178 commit e63b569Copy full SHA for e63b569
resources/views/tasks/form.blade.php
@@ -34,7 +34,7 @@
34
<select id="command" name="command" class="uk-select" placeholder="Click here to select one of the available commands">
35
<option value="">Select a command</option>
36
@foreach ($commands as $command)
37
- <option value="{{$command->getName()}}" {{old('command', $task->command) == $command->getName() ? 'selected' : ''}}>{{$command->getDescription()}}</option>
+ <option value="{{$command->getName()}}" {{old('command', $task->command) == $command->getName() ? 'selected' : ''}}>{{ $command->getName() }} - {{ $command->getDescription() }}</option>
38
@endforeach
39
</select>
40
@if($errors->has('command'))
@@ -241,4 +241,4 @@
241
@stop
242
@section('main-panel-after')
243
</form>
244
-@stop
+@stop
0 commit comments