Display both state and last_changed in glance?

Is there a way to display this much information in a glance? Or is there a more suitable card I can use?

I want to display 4 entities, each with its name, state, and last changed, in as little space as possible and my workaround is to duplicate the entities. And I don’t want to add custom entities or attributes.

type: glance
entities:
  - entity: sensor.thermostat_great_room_cooling_operating_state
    name: null
  - entity: sensor.thermostat_great_room_cooling_fan_state
    name: null
  - entity: sensor.thermostat_teen_room_cooling_operating_state
    name: null
  - entity: sensor.thermostat_teen_room_cooling_fan_state
    name: null
  - entity: sensor.thermostat_great_room_cooling_operating_state
    show_last_changed: true
    name: Great HVAC
  - entity: sensor.thermostat_great_room_cooling_fan_state
    show_last_changed: true
    name: Great Fan
  - entity: sensor.thermostat_teen_room_cooling_operating_state
    show_last_changed: true
    name: Teen HVAC
  - entity: sensor.thermostat_teen_room_cooling_fan_state
    show_last_changed: true
    name: Teen Fan
show_icon: false
show_state: true
show_name: true
columns: 4

Jimz011 setup has entity buttons that could do that I think.

I checked the docs and there isn’t an option to show the state value nor last_changed value. https://www.home-assistant.io/lovelace/entity-button/

I tried adding the show_last_changed setting for the card and entity level and it didn’t recognize it for entity buttons.

Just check out his work on Lovelace. There’s video and plenty of examples. He is using custom entity buttons of course.