There are several way to list table in PostgreSQL depending on the context. Here is how to list tables:

In the current schema:

\dt

List tables in all schemas:

\dt *.*

List tables in a specific schema:

\dt orders.*

List tables with extra information:

\dt+