Tag: laravel

Install phpredis on macOS Mojave

As of this PR phpredis is the new default client for Laravel v6.0 (and up) Applications, you may be want to install phpredis to test your Application in a real life environment using phpredis instead of predis (which is not getting any activity since a while at the time of writing). UPDATE: Found out that the following command is all […]

Register Auth Routes in Laravel when using ::class for Controllers

Since Freek Van der Herten tweet about the way to register Controllers in Laravel with the ::class (Introduced in PHP 5.5) a while ago I always did it this way. (TL;DR: Go to Solution) As we mostly create APIs I used this when register Routes in `routes/api.php` only. Till Today… When I wanted to set this up, I’d remove the […]

DNS resolve Problems with Guzzle/curl, and php on MacOS for local requests

DNS resolve Problems with Guzzle/curl, and php on MacOS for local requests

I just ran into a Problem where I wanted to request another local Laravel App (guzzle-test.test) from an App with Guzzle. TL;DR Run the following: curl Version mismatch The Problem is caused by curl installed in multiple versions. You can find further details in this Stackoverflow Post:https://stackoverflow.com/questions/54688451/curl-laravel-valet-dnsmasq-not-working/54908305#54908305

Use Github Actions to deploy your App on Laravel Vapor

Use Github Actions to deploy your App on Laravel Vapor

As a full stack developer at novu, I always try to automate workflows. Especially deployments should not have to be executed manually as far as possible. With the release of Laravel Vapor there was no possibility for out of the box to execute the deployment e.g. in case of a push to the master branch. Since Github now offers a […]

Fix Laravel Mix’s “Hot Module Replacement reloading” with HTTPS

Laravel-Mix has a very useful feature called “Hot Module Replacement“. This tries to reload only the parts that have been modified. For example, Vue components are replaced without a page refresh. Especially forms can be developed much more comfortable. If HTTPS is needed for local development, this feature does not work as expected. However, the following changes lead to the […]

Scroll to Top