< Home

Blog

Fix broken laravel valet installation on MacOS

Fix broken laravel valet installation on MacOS

published on June 15, 2023

Fix laravel valet not starting and throwing errors in the console due to not finding a PHP executable, or file not found by doing a clean install

Read
Setup a Laravel development environemnt on Windows with WSL2

Setup a Laravel development environemnt on Windows with WSL2

published on October 01, 2022

Setup a fully functioning development enviroment for Laravel on windows using WSL2 and ubuntu, you get to daily Windows and develop apps on linux just as god intended!

Read
Translating form fields in Laravel

Translating form fields in Laravel

published on May 11, 2022

Translate form fields names, whether they belong in a web form or an API response so these names can be readable by the user in their selected language when validation fails

Read
Conditionally loading relations in Laravel resources

Conditionally loading relations in Laravel resources

published on April 29, 2022

Avoid N+1 query problem in resources especially when you have nested resources in a response, and cut down json parsing time by eliminating ununsed data from it

Read
How to override default validation messages in Laravel

How to override default validation messages in Laravel

published on March 10, 2022

Override the default validation messages in Laravel, by either changing the defaults or changing the message for a specific request

Read
Feature and Unit tests, what they are and how to use them in Laravel

Feature and Unit tests, what they are and how to use them in Laravel

published on January 02, 2022

How each one of these tests is supposed to work, how to utilize them in your development lifecycle, and how to specifically use them in Laravel and phpunit

Read
PHP foundation announced

PHP foundation announced

published on November 22, 2021

The announcement of the PHP foundation, what does it do and what it means for the future of PHP

Read

Test driven development (TDD) in Laravel

published on November 16, 2021

The philosophy behind TDD and how to incorporate it in your Laravel project

Read
Install xdebug for web and CLI

Install xdebug for web and CLI

published on November 10, 2021

Install xdebug on macos and ubuntu and use it with phpunit, web and APIs

Read
Laravel serialization circular relation

Laravel serialization circular relation

published on October 23, 2021

Fix the issue where the serialized object in the queue contains infinite circular relations, causing the job to timeout and fail

Read