Offline payment action button changed.
This commit is contained in:
parent
a0d2ae41b5
commit
c8475af9d9
@ -57,7 +57,7 @@
|
|||||||
<th class="col-md-3">{{ trans('general.name') }}</th>
|
<th class="col-md-3">{{ trans('general.name') }}</th>
|
||||||
<th class="col-md-4">{{ trans('offlinepayment::general.form.code') }}</th>
|
<th class="col-md-4">{{ trans('offlinepayment::general.form.code') }}</th>
|
||||||
<th class="col-md-2 text-center">{{ trans('offlinepayment::general.form.order') }}</th>
|
<th class="col-md-2 text-center">{{ trans('offlinepayment::general.form.order') }}</th>
|
||||||
<th class="col-md-3">{{ trans('general.actions') }}</th>
|
<th class="col-md-3 text-center">{{ trans('general.actions') }}</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
@ -67,9 +67,17 @@
|
|||||||
<td>{{ $item->name }}</td>
|
<td>{{ $item->name }}</td>
|
||||||
<td>{{ $item->code }}</td>
|
<td>{{ $item->code }}</td>
|
||||||
<td class="text-center">{{ $item->order }}</td>
|
<td class="text-center">{{ $item->order }}</td>
|
||||||
<td>
|
<td class="text-center">
|
||||||
<button type="button" class="btn btn-primary btn-xs method-edit" id="edit-{{ $item->code }}" title="{{ trans('general.edit') }}"><i class="fa fa-pencil-square-o" aria-hidden="true"></i> {{ trans('general.edit') }}</button>
|
<div class="btn-group">
|
||||||
<button type="button" class="btn btn-danger btn-xs method-delete" id="delete-{{ $item->code }}" title="{{ trans('general.delete') }}"><i class="fa fa-trash-o" aria-hidden="true"></i> {{ trans('general.delete') }}</button>
|
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" data-toggle-position="left" aria-expanded="false">
|
||||||
|
<i class="fa fa-ellipsis-h"></i>
|
||||||
|
</button>
|
||||||
|
<ul class="dropdown-menu dropdown-menu-right">
|
||||||
|
<li><a href="#" class="method-edit" id="edit-{{ $item->code }}">{{ trans('general.edit') }}</a></li>
|
||||||
|
<li class="divider"></li>
|
||||||
|
<li><a href="#" class="method-delete" id="delete-{{ $item->code }}">{{ trans('general.delete') }}</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
@endforeach
|
@endforeach
|
||||||
|
Loading…
x
Reference in New Issue
Block a user