1.2.1
Send message to slack
Use this to send any message to your dev slack:
use Binarcode\LaravelDeveloper\LaravelDeveloper;
LaravelDeveloper::messageToDevSlack('Hey, we have troubles ;-)');Dev auth
Each api has authentication, and testing it via HTTP Client (ie postman) we spend a lot of time to login users and copy the token, put in the next request and so on. Well now Laravel Developer provides an easy way to authenticate users in local env using testing token:
// app/Http/Kernel.php
'api' => [
//...
\Binarcode\LaravelDeveloper\Middleware\DevAuthMiddleware::class,
]