Amir Rami

Results 16 comments of Amir Rami

hi @william-koffi, you can add a pattern to `localizator.search.patterns` that will be used to ignore files from the vendor folder.

Love the proposal. If you think you might be able to contribute feel free to PR. Notes: - Separate PRs for `--dry-run` and `--ci` - `--dry-run` should maybe output all...

Not currently, but It's a good feature that I can add, so we can have something like: ```bash php artisan localize de,ru,es --remove-missing ``` Thanks for the suggestion.

Agree @ota-meshi. What do you think about "ignores" option where you can specify tags to ignore? Example: https://eslint.vuejs.org/rules/multiline-html-element-content-newline.html#vue-multiline-html-element-content-newline Also, here (https://github.com/vuejs/eslint-plugin-vue/issues/1834#issuecomment-1084421621) it's suggested for components, but why not for both...

Here's my controller method, how I approached this issue: ``` /** * Try to store the 2FA secret in users table if all goes well. * * @param Request $request...

I'm currently dealing with this issue, and I'm still looking for a solution how to approach it. I am guessing you have a route where you post your one-time password...

Hi again. The thing that worked for me was instead of redirecting to previous URL (`redirect(URL()->previous())`) redirecting to intended URL which Laravel auth relies upon heavily already. Try changing it...

@christophrumpel Exactly. Something like: ```php public function toTwitter($notifiable) { return (new TwitterStatusUpdate('Laravel notifications are awesome!')) ->inReplyTo($this->tweet_id); } ```

I know how it works. I built a Twitter bot last year that I already abandoned. 😅 > Would you want to work on a PR on that? Sure.

This solved it for me: https://github.com/inertiajs/server/issues/10#issuecomment-1208751934