Merge remote-tracking branch 'origin/develop'

This commit is contained in:
snipe 2020-11-09 23:05:40 -08:00
commit 8a7cd87644

View file

@ -154,8 +154,9 @@ View Assets for {{ $user->present()->fullName() }}
}'> }'>
<thead> <thead>
<tr> <tr>
<th class="col-md-5">{{ trans('general.name') }}</th> <th class="col-md-4">{{ trans('general.name') }}</th>
<th class="col-md-4">{{ trans('admin/hardware/form.serial') }}</th> <th class="col-md-4">{{ trans('admin/hardware/form.serial') }}</th>
<th class="col-md-4">{{ trans('general.category') }}</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@ -169,6 +170,7 @@ View Assets for {{ $user->present()->fullName() }}
------------ ------------
@endcan @endcan
</td> </td>
<td>{{ $license->category->name }}</td>
</tr> </tr>
@endforeach @endforeach
</tbody> </tbody>
@ -211,13 +213,15 @@ View Assets for {{ $user->present()->fullName() }}
}'> }'>
<thead> <thead>
<tr> <tr>
<th class="col-md-12">{{ trans('general.name') }}</th> <th class="col-md-8">{{ trans('general.name') }}</th>
<th class="col-md-4">{{ trans('general.category') }}</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@foreach ($user->consumables as $consumable) @foreach ($user->consumables as $consumable)
<tr> <tr>
<td>{{ $consumable->name }}</td> <td>{{ $consumable->name }}</td>
<td>{{ $consumable->category->name }}</td>
</tr> </tr>
@endforeach @endforeach
</tbody> </tbody>
@ -264,13 +268,15 @@ View Assets for {{ $user->present()->fullName() }}
}'> }'>
<thead> <thead>
<tr> <tr>
<th class="col-md-12">Name</th> <th class="col-md-8">{{ trans('general.name') }}</th>
<th class="col-md-4">{{ trans('general.category') }}</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@foreach ($user->accessories as $accessory) @foreach ($user->accessories as $accessory)
<tr> <tr>
<td>{{ $accessory->name }}</td> <td>{{ $accessory->name }}</td>
<td>{{ $accessory->category->name }}</td>
</tr> </tr>
@endforeach @endforeach
</tbody> </tbody>