I created a brand new Laravel project (Laravel 5.1.11). It is up and running with no built-in user authentication pages, etc.
I followed the Wiki to install "pingpong/admin" which grabs "Using version ^2.1 for pingpong/admin" and then I update the Laravel configurations accordingly.
NOTE The documentation is not updated to use the new "::class" attributes in the configurations.
When I attempt to seed the database it throws an error that the base table or view is not found.
[Illuminate\Database\QueryException]
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'mydb.roles' doesn't exist (SQL: insert into roles (name, slug, description , created_at, updated_at) values (Admin, admin, The one who manage the site, 2015-11-12 19:38:13, 2015-11-12 19:38:13))
I created a brand new Laravel project (Laravel 5.1.11). It is up and running with no built-in user authentication pages, etc.
I followed the Wiki to install "pingpong/admin" which grabs "Using version ^2.1 for pingpong/admin" and then I update the Laravel configurations accordingly.
NOTE The documentation is not updated to use the new "::class" attributes in the configurations.
When I attempt to seed the database it throws an error that the base table or view is not found.
[Illuminate\Database\QueryException]
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'mydb.roles' doesn't exist (SQL: insert into
roles(name,slug,description,created_at,updated_at) values (Admin, admin, The one who manage the site, 2015-11-12 19:38:13, 2015-11-12 19:38:13))