Resolve any `*.test` domain to `localhost`Linux This setup uses dnsmasq to handle *.test domain resolution, with systemd-resolved forwarding those queries to dnsmasq. # Install dnsmasq sudo apt update sudo apt install dnsmasq # Configure dnsmasq to listen on 127.0.0.2 and resolve *.test to ...Feb 13, 2026·2 min read
Autoupdating Project DependenciesThe ultimate Dependabot setup guide with a working real-life project example.Oct 31, 2022·4 min read
Debuging Laravel Sail ProjectsAdd to .env: SAIL_XDEBUG_MODE=develop,debug,coverage Restart sail up. In PHPStorm, add mapping in Settings → PHP → Servers → 0.0.0.0 to /var/www/html.Oct 19, 2022·1 min read
Configuring Server-Side Rendering In A Laravel + Vue + Inertia ProjectUpdate. Code snippets updated to use Inertia.js 1.0. My last article provided a detailed step-by-step guide about adding Vue.js and Inertia.js to a Laravel project. All is good, but here is one little problem. It renders pages using JavaScript, and i...Oct 4, 2022·2 min read