Sort children pages by field inside children (date field)

Is there a way to sort multiple children pages (by a datefield).
I know about sorting them by ‘created’ and ‘modified’ but I would like to order them by setting the date manually.

Yes, of course:

$page->children()->sortBy('date', 'desc');

Can’t believe myself, haha. Thank you! I must have stepped over the easy solution.