It's saying the database axie does not have a roles table.
Try running
php artisan migrate
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
I pulled new project and when I run composer install I got this error
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'axie.roles' doesn't exist (SQL: select * from `roles` where `id` = 3 and `guard_name` = web limit 1)
the problem is that someone in a service provider has assumed that the database already exists. You need to find that code and comment it until you have been able to run composer and artisan migrate
LOOK at the stack trace to see where this error occurred
Please or to participate in this conversation.