After upgrading from laravel 5.3 to 5.4, I encountered a vendor error. Error:
Symfony \ Component \ Debug \ Exception \ FatalThrowableError: calling the undefined method Illuminate \ Session \ Store :: set () in /var/www/ostadbank.com/vendor/laravel/framework/src/Illuminate/Support/Manager.php:137
But when I get to my error:
fatal error exception in Manager.php line 137: calling the undefined method Illuminate \ session \ store :: set ()
I go to manager.php 137 page and I see the following line:
public function __call($method, $parameters) { return $this->driver()->$method(...$parameters); }
I'm not sure where to start changing.
See screenshots below:


source
share