15 lines
383 B
PHP
15 lines
383 B
PHP
@push('shortcuts')
|
|
<dl class="dl-horizontal">
|
|
<dt><code>b</code></dt>
|
|
<dd>{{ trans('admin::admin.shortcuts.back_to_index', ['name' => trans('page::pages.page')]) }}</dd>
|
|
</dl>
|
|
@endpush
|
|
|
|
@push('scripts')
|
|
<script>
|
|
keypressAction([
|
|
{ key: 'b', route: "{{ route('admin.pages.index') }}" },
|
|
]);
|
|
</script>
|
|
@endpush
|