@include('helpers.form_control', [
'type' => 'text',
'class' => '',
'readonly' => true,
'label' => '',
'name' => 'options[endpoint]',
'value' => 'POST ' . route('automation_execute', [
'uid' => $uid,
]),
'help_class' => 'trigger',
'rules' => [],
])
{{ trans('messages.curl_example') }}:
curl -X POST -H "accept:application/json" -G \
{{ route('automation_execute', [
'uid' => $uid,
]) }} \
-d api_token={{ \Auth::user()->api_token }}
@include('helpers.form_control', [
'name' => 'mail_list_uid',
'include_blank' => trans('messages.automation.choose_list'),
'type' => 'select',
'label' => trans('messages.list'),
'value' => '',
'options' => Auth::user()->customer->readCache('MailListSelectOptions', []),
])