Remove all trailing / from tags

This commit is contained in:
James Brooks
2015-01-17 19:23:35 +00:00
parent 5ca4e9af3d
commit dedb7b0e3f
20 changed files with 79 additions and 79 deletions
+2 -2
View File
@@ -26,14 +26,14 @@
@foreach(trans('cachet.components.status') as $statusID => $status)
<div class="radio-inline">
<label>
<input type="radio" name="status" value="{{ $statusID }}" {{ (int) $component->status === $statusID ? 'checked' : null }} />
<input type="radio" name="status" value="{{ $statusID }}" {{ (int) $component->status === $statusID ? 'checked' : null }}>
{{ $status }}
</label>
</div>
@endforeach
</div>
</div>
<input type="hidden" name="component_id" value="{{ $component->id }}" />
<input type="hidden" name="component_id" value="{{ $component->id }}">
{{ Form::close() }}
</div>
@empty