15 lines
344 B
PHP
15 lines
344 B
PHP
@push('shortcuts')
|
|
<dl class="dl-horizontal">
|
|
<dt><code>b</code></dt>
|
|
<dd>{{ trans('user::roles.navigation.back to index') }}</dd>
|
|
</dl>
|
|
@endpush
|
|
|
|
@push('scripts')
|
|
<script>
|
|
keypressAction([
|
|
{ key: 'b', route: "{{ route('admin.roles.index') }}" },
|
|
]);
|
|
</script>
|
|
@endpush
|