@extends('layouts.app') @section('title', $page_title) @push('scripts') @endpush @php $attributes = json_decode($split_test->attributes); $sending_speed = json_decode($split_test->sending_speed); @endphp @section('content')
@csrf @method('PUT')
@php $list_ids = json_decode($split_test->list_ids, true); @endphp @include('includes.dropdown_lists', ['popup' => 0, 'multiple' => 1, 'required' => 1, 'client_package_lists' => 1, 'disabled' => 1])
@php $broadcast_ids = json_decode($split_test->broadcast_ids, true); @endphp @include('includes.dropdown_broadcasts', ['popup' => 0, 'multiple' => 1, 'required' => 1, 'disabled' => 1])
@php $sending_server_ids = json_decode($split_test->sending_server_ids, true); @endphp @include('includes.dropdown_sending_server', ['popup' => 0, 'multiple' => 1, 'required' => 1, 'client_package_lists' => 1, 'disabled' => 1])

from_detail == 'sending_server' ? 'checked' : '' }}> {{__('app.as_defined_for_sending_server')}}   from_detail == 'list' ? 'checked' : '' }}> {{__('app.as_defined_for_list')}}   from_detail == 'custom' ? 'checked' : '' }}> {{__('app.custom')}}
@php if($attributes->from_detail == 'custom') { $form_detail_custom = json_decode($attributes->from_detail_custom); $from_email_domain = explode('@', $form_detail_custom->from_email)[1]; } @endphp
@
@endsection