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