kerkness
02/15/2023, 1:14 PM// mimic format of admin PUT request
$ta['name'] = $data[0];
$ta['active'] = 1; // seems required for translations
$ta['summary'] = $data[5]; // translatable input
// Block content doesn't get created
$ta['blocks'][] = [
'id' => now(),
'content' => $data[7],
'type' => "a17-block-app-text",
'is_repeater' => false,
'editor_name' => 'default'
];
$twillArtist = TwillArtist::create($ta);
$twillArtist->setSlugs();
$twillArtist->save();