I am working with full Calendar and passing this array to full calendar
[{"id":"11589","slot":"Morning",start: "2019-07-18T06:00:00",end: "2019-07-18T09:00:00"},{"id":"11590","slot":"Afternoon",start: "2019-07-18T00:00:00",end: "2019-07-18T00:00:00"},{"id":"11588","slot":"Evening",start: "2019-07-18T17:00:00",end: "2019-07-18T18:15:00"},{"id":"11587","slot":"Night",start: "2019-07-18T20:15:00",end: "2019-07-18T22:15:00"}]
the issue is i want to show event of day in this order only but what i want is afternoon is coming first then Morning, Evening & Night.
Output :
Afternoon
Morning
Evening
Night
Required Output:
Morning
Afternoon
Evening
Night