@if ( !isset($edit) || !$edit )
@endif
@if ( isset($edit) && ! $edit )
@foreach($actionTypes as $actionType)
@include('workflow::actions.actionables.' . $actionType->name, [
'type' => $actionType,
'edit' => $edit
])
@endforeach
@else
@include('workflow::actions.actionables.' . $action->action_type->name, [
'type' => $action->action_type,
'action' => $action,
'edit' => $edit
])
@endif