framework
framework copied to clipboard
[12.x] isSoftDeletable(), isPrunable(), and isMassPrunable() to model class
Before
if (in_array(MassPrunable::class, class_uses_recursive($myClass))) {
// …
}
After
if ($myClass::isSoftDeletable()) {
// …
}
Alternatives
- Property hook