1) You will need a variable that stores which day is currently selected.
public SelectedDay:string = null;
2) Then on click, set selected day,
{{day}}
3) Check if selected day is the same day in loop using *ngIf or hidden
Your final HTML should look like this -
This should work.