So I found out the problem.
In my ServiceProvider file, I had the wrong setting for the package in the Boot method.
instead of this
public function boot()
{
$this->package('Tmv/WhatsApi');
}
I needed this
public function boot()
{
$this->package('thomasvargiu/tmv-whatsapi', 'WhatsApi');
}
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community