Adrian Brown

Results 12 comments of Adrian Brown

The tests _(which seem to be passing)_ are passing in `'en_US.utf-8'` as the locale to get the dollar symbol. This should work: ``` money(35.55, true, 'en_US.utf-8'); ```

Putting this in your AppServiceProvider might also work: ``` locale_set_default('en_US.utf-8'); ```

Sorry I couldn't be of more help. I was able to reproduce your issue on a Forge server, but the following had worked for me in tinker: ```php function money($input,...

We wanted to move to Laravel Vapor, but we needed to support PDF generation, document conversion, and image optimisation. The appeal of serverless was to not worry about servers, but...

[hammerstonedev/sidecar-php](https://github.com/hammerstonedev/sidecar-php) 👀

Laravel Mix makes webpack a no-brainer. It is not coupled to PHP or Laravel at all, you can use it in any project. **Repo:** https://github.com/JeffreyWay/laravel-mix **Installation:** https://github.com/JeffreyWay/laravel-mix/blob/master/docs/installation.md The only exception...

While I'm still thinking of it - it would be convenient if the package checked if there is a batch, and if so add the "batch cancelled/return early/don't run handle/asJob"...

_Sorry, another stream of consciousness._ Can the package do dependency injection for methods like `asJob()`, `asCommand()` etc. For example, the package should know how to provide a `Job` and `?Batch`...

I would love this feature. My use case as follows: ### Use Case **Context:** - We use GitHub deployment tracking. - Jira receives GitHub deployment hooks for it's deployment screen....

@aarondfrancis, would it be ok if I used [Pest](https://pestphp.com/) for the tests? The data providers would reduce the number of test functions I need to implement. It also doesn't prevent...