When using the Capsule Manager from illuminate/database
I get the error Call to a member function getConnection() on null in Capsule/Manager
I quickly checked the file, and the $instance variable is never actually set.
See: https://github.com/illuminate/database/blob/master/Capsule/Manager.php#L74
You need to set it. ;)
Ooh you need to setAsGlobal method, I see now :p
$capsule->setAsGlobal();
Most helpful comment
Ooh you need to setAsGlobal method, I see now :p