Running the following command for vendor publishing didn't work,
php artisan vendor:publish --provider=Nahid\Permit\PermitServiceProvider
But adding the ServiceProvider as a quoted string like following works like a charm.
php artisan vendor:publish --provider="Nahid\Permit\PermitServiceProvider"
I'm not sure why. But seems like the README should be updated with the working example.