@props([
'canDelete' => true,
'canShow' => true,
'canEdit' => true,
'routeShow' => "",
'routeDestroy' => "",
'routeEdit' => "",
])
@if($routeShow != "" && $canShow == true)
@endif
@if($routeDestroy != "" && $canDelete == true)
@endif
@if($routeEdit != "" && $canEdit == true)
edit
@endif
{{$slot}}
|