> */ public function rules(): array { return [ 'delete_related' => [ 'string', 'in:true,false', ], ]; } public function getDeleteRelated(): bool { return $this->input('delete_related', 'false') === 'true'; } }