Sort pages in panel by date and time

Hi :slight_smile:
I would like to sort the pages in the panel by date field but also by time field, is it possible?
this is my yml:

  shows: 
    template: 
      - show
    type: pages
    sortBy: date asc
    layout: table
    columns:
      day:
        label: Day
        value: "{{ page.date.toDate("d.m") }}"
      time:
        label: Time start
        value: "{{ page.start.toDate("H:i") }}"

Thanks!

sortBy: date asc time asc
1 Like

amazing :sweat_smile: - thank you so much!