@extends('layouts.master') @section('content') Shortcut Index

Shortcut List

@can('Shortcut Preferences add') Add New Shortcut @endcan
@if (session('success'))
{{ session('success') }}
@endif @forelse($shortcuts as $shortcut) @empty @endforelse
ID Shortcut Name Shortcut Key 1 (Ctrl) Shortcut Key 2 (Alphabet) Actions
{{ $shortcut->id_key }} {{ $shortcut->shortcut_name }} {{ $shortcut->shortcut_key_1 }} {{ $shortcut->shortcut_key_2 }} @can('Shortcut Preferences edit') Edit @endcan @can('Shortcut Preferences delete')
@csrf @method('DELETE')
@endcan
No shortcuts found.
{{ $shortcuts->links() }}
@endsection