Skip to main content

Articles

Long-form writing on PHP, Laravel, API design, and software engineering.

Laravel 13 min read

Running PHPStan on max with Laravel

Discover how to enhance your Laravel project with static analysis using Larastan. Add confidence and type safety to your code.

Laravel 18 min read

API Integrations using Saloon in Laravel

Discover easy API integration in Laravel with Saloon; a tutorial on creating a GitHub API connection to manage workflows from the command line.

Laravel 12 min read

Laravel subdomains in Docker

Learn how to set up subdomain support for your Laravel app using Docker. Configure Nginx, Redis, MySQL, and Traefik for seamless subdomain management.

PHP 6 min read

Sauber PHP

Explore Sauber PHP, a clean micro-framework with routing, dependency injection, and custom Command Bus.

PHP 7 min read

Building a CLI application in 2022

Explore the best options for building CLI apps in 2022, including Laravel Zero, Symfony Console, and more, suitable for both PHP and Rust developers.

Laravel 8 min read

Laravel Command Bus

Implement Command Bus in Laravel for efficient code management. Learn to create command handlers and integrate them seamlessly into your projects.

PHP 7 min read

Adapter Pattern

Explore the adapter design pattern in coding through a practical example of building a versatile social poster class, adaptable for different social networks.

Laravel 6 min read

Testing API responses in PestPHP

Efficient API Response Testing in Laravel with pestPHP - Learn to test Laravel API responses effectively using pestPHP and fixtures.

Laravel 3 min read

Tappable Query Scopes in Laravel

Enhance Laravel Query Scopes with Tappable Query Scopes - Learn about tappable query scopes in Laravel, a clean way to apply multiple scopes.

Laravel 4 min read

Routing within our Domain

Learn how to manage routes in Laravel DDD by creating domain-specific route files and using service providers for cleaner and more organized code.

Laravel 3 min read

Getting started with DDD in Laravel

Master Laravel DDD with ease; Learn how to enhance your Laravel applications by implementing Domain Driven Design for improved structure and maintainability.

Laravel 4 min read

Querying Records in our Domain

Learn how to leverage Laravel DDD for efficient record queries. Simplify read actions in your application.