Skip to content

Commit

Permalink
Offline payment action button changed.
Browse files Browse the repository at this point in the history
  • Loading branch information
Batuhan Baş committed Jan 15, 2019
1 parent a0d2ae4 commit c8475af
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions modules/OfflinePayment/Resources/views/edit.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
<th class="col-md-3">{{ trans('general.name') }}</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-3">{{ trans('general.actions') }}</th>
<th class="col-md-3 text-center">{{ trans('general.actions') }}</th>
</tr>
</thead>
<tbody>
Expand All @@ -67,9 +67,17 @@
<td>{{ $item->name }}</td>
<td>{{ $item->code }}</td>
<td class="text-center">{{ $item->order }}</td>
<td>
<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>
<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>
<td class="text-center">
<div class="btn-group">
<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>
</tr>
@endforeach
Expand Down

1 comment on commit c8475af

@batuhawk
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

offline payments

Please sign in to comment.