Sounds like you have a table called administrator and a plural version referenced in the model?
Can you check to make sure the names of the tables match?
I am trying to make an eCommerce web application using Laravel 5. But it seems that I am stuck at the very first stage of it - Authentication. Well, In my application, there are 2 entities (Administrator and the Normal User).
I have created the administrator table having columns id, name, email and password using the migration.
After some research, I came to know that in the Administrator Model, I have to declare the following code :=>
protected $table = 'administrators';
So I tried that, but that didn't helped me out.
What could be the issue ?
Please or to participate in this conversation.