Fix display of multi-word keys

This commit is contained in:
Dane Everitt 2018-01-30 20:40:34 -06:00
parent 6ef62c7f74
commit b0c8390529
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53

View file

@ -25,7 +25,7 @@
<table class="table table-hover">
@foreach($resources as $resource)
<tr>
<td class="col-sm-3 strong">{{ title_case($resource) }}</td>
<td class="col-sm-3 strong">{{ str_replace('_', ' ', title_case($resource)) }}</td>
<td class="col-sm-3 radio radio-primary text-center">
<input type="radio" id="r_{{ $resource }}" name="r_{{ $resource }}" value="{{ $permissions['r'] }}">
<label for="r_{{ $resource }}">Read</label>