@kjones1876, you should know difference between Laravel Container and global class..
This line resolvers '\App\Plivo' instance in laravel app(the container).
$this->app->make('\App\Plivo');
And also this line just creates new object from class if it is defined..
$value = new \App\Plivo; // This throws a not found error
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community