@props([
'module' => '',
'show' => null,
'edit' => null,
'destroy' => null,
'message' => 'هل أنت متأكد من حذف هذا السجل؟',
])
@if ($show && auth()->user()->can("$module.view"))
@endif
@if ($edit && auth()->user()->can("$module.edit"))
@endif
@if ($destroy && auth()->user()->can("$module.delete"))
@endif
{{ $slot }}