Open kashifchishti82 opened 5 years ago
To use the alias, add this to the aliases in app/config/app.php.
'SoapWrapper' => Artisaninweb\SoapWrapper\Facade\SoapWrapper::class,
The above line have incorrect nampespace it soapWrapper is under Artisaninweb\SoapWrapper\SoapWrapper::class,
Artisaninweb\SoapWrapper\SoapWrapper::class,
This is supposed to reference the facade, so I believe the correct path would be 'SoapWrapper' => Artisaninweb\SoapWrapper\Facade::class,
'SoapWrapper' => Artisaninweb\SoapWrapper\Facade::class,
To use the alias, add this to the aliases in app/config/app.php.
'SoapWrapper' => Artisaninweb\SoapWrapper\Facade\SoapWrapper::class,
The above line have incorrect nampespace it soapWrapper is under
Artisaninweb\SoapWrapper\SoapWrapper::class,