SQLSTATE[42S22]: Column not found: 1054 Unknown column
It looks like you are encountering an error with the message "SQLSTATE[42S22]: Column not found: 1054 Unknown column". This error is usually caused by a problem with a SELECT statement in your SQL code.
There are a few possible reasons for this error:
There may be a typo in the column name. Double-check the spelling to make sure it is correct.
The column may not exist in the table. Make sure that the column is present in the table by running a DESCRIBE or SHOW COLUMNS statement.
You may be connecting to the wrong database or table. Make sure that you are connecting to the correct database and table.
There may be a problem with the database itself. If none of the above solutions solve the problem, try restarting the database or contacting your database administrator.