Skip to content

Commit

Permalink
Merge pull request #15774 from marcusmoore/feature/sc-27350
Browse files Browse the repository at this point in the history
Added Checkout ID column to user accessory table
  • Loading branch information
snipe authored Nov 6, 2024
2 parents b96a312 + ad99b8b commit 9c1c93a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 0 additions & 2 deletions resources/lang/en-US/admin/accessories/table.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,4 @@
'id' => 'ID',
'require_acceptance' => 'Acceptance',
'title' => 'Accessory Name',


);
8 changes: 5 additions & 3 deletions resources/views/users/view.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -896,7 +896,8 @@ class="table table-striped snipe-table table-hover"
}'>
<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>
Expand All @@ -905,7 +906,8 @@ class="table table-striped snipe-table table-hover"
<tbody>
@foreach ($user->accessories as $accessory)
<tr>
<td>{!!$accessory->present()->nameUrl()!!}</td>
<td>{{ $accessory->pivot->id }}</td>
<td>{!!$accessory->present()->nameUrl()!!}</td>
<td>{!! $accessory->pivot->note !!}</td>
<td>
{!! Helper::formatCurrencyOutput($accessory->purchase_cost) !!}
Expand Down Expand Up @@ -1210,4 +1212,4 @@ class="table table-striped snipe-table"
</script>


@stop
@stop

0 comments on commit 9c1c93a

Please sign in to comment.