Merge pull request #15774 from marcusmoore/feature/sc-27350
Added Checkout ID column to user accessory table
This commit is contained in:
commit
9c1c93ad52
2 changed files with 5 additions and 5 deletions
|
@ -6,6 +6,4 @@ return array(
|
|||
'id' => 'ID',
|
||||
'require_acceptance' => 'Acceptance',
|
||||
'title' => 'Accessory Name',
|
||||
|
||||
|
||||
);
|
||||
|
|
|
@ -896,7 +896,8 @@
|
|||
}'>
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="col-md-5">{{ trans('general.name') }}</th>
|
||||
<th class="col-md-1">{{ trans('general.id') }}</th>
|
||||
<th class="col-md-4">{{ trans('general.name') }}</th>
|
||||
<th class-="col-md-5" data-fieldname="note">{{ trans('general.notes') }}</th>
|
||||
<th class="col-md-1" data-footer-formatter="sumFormatter" data-fieldname="purchase_cost">{{ trans('general.purchase_cost') }}</th>
|
||||
<th class="col-md-1 hidden-print">{{ trans('general.action') }}</th>
|
||||
|
@ -905,6 +906,7 @@
|
|||
<tbody>
|
||||
@foreach ($user->accessories as $accessory)
|
||||
<tr>
|
||||
<td>{{ $accessory->pivot->id }}</td>
|
||||
<td>{!!$accessory->present()->nameUrl()!!}</td>
|
||||
<td>{!! $accessory->pivot->note !!}</td>
|
||||
<td>
|
||||
|
|
Loading…
Add table
Reference in a new issue