laracon-online-2020
laracon-online-2020 copied to clipboard
Migrations
Hi,
I don think all the migrations are included. Table 'repos' not found. Also $connection = \App\Repo::sushiConnectionName(); throws an error
change the AppServiceProvider.php \App\Repo to App\Repo (tested in mac os) it works for me
if (class_exists(App\Repo::class)) {
// Refresh sushi.
$connection = App\Repo::sushiConnectionName();
\DB::setDefaultConnection($connection);
(new \App\Repo);
}