i created blueprint and using disable method for slug
slug:
hidden: true
validation:
- false
but,
EntryRecord::inSection... create($data);
still ends with flash message from validation about slug is required
Short answer that âfixesâ this strange behaviour is using new EntryRecordâŚ
$entry = new EntryRecord::inSection...
$entry->slug ...
$entry->save();