17 lines
453 B
PHP
17 lines
453 B
PHP
@include('admin::partials.selectize_remote')
|
|
|
|
@push('shortcuts')
|
|
<dl class="dl-horizontal">
|
|
<dt><code>b</code></dt>
|
|
<dd>{{ trans('admin::admin.shortcuts.back_to_index', ['name' => trans('coupon::coupons.coupon')]) }}</dd>
|
|
</dl>
|
|
@endpush
|
|
|
|
@push('scripts')
|
|
<script type="module">
|
|
keypressAction([
|
|
{ key: 'b', route: "{{ route('admin.coupons.index') }}" },
|
|
]);
|
|
</script>
|
|
@endpush
|