@php
switch($type) {
case "update_contact":
$icon = "people";
break;
case "tag_contact":
$icon = "check";
break;
case "copy_contact":
$icon = "content_copy";
break;
case Acelle\Library\Automation\Operate::OPERATION_REMOVE_TAG:
$icon = "bookmark_remove";
break;
default:
$icon = "check";
}
@endphp
{{ $icon }}
{{ trans('messages.automation.operation.' . $type) }}
{{ trans('messages.automation.operation.' . $type . '.desc') }}