@scope('cell_is_system', $template)
@if($template->is_system)
@else
@endif
@endscope
@scope('cell_created_at', $template)
{{ $template->created_at?->diffForHumans() }}
@endscope
@scope('actions', $template)
@can('view crm sms-templates')
@endcan
@can('edit crm sms-templates')
@if(! $template->is_system)
@endif
@endcan
@can('create crm sms-templates')
@endcan
@can('delete crm sms-templates')
@if(! $template->is_system)
@endif
@endcan
@endscope