Engineering
The latest updates, tutorials, and stories about Engineering
-
November 6th, 2024
Understanding the Difference Between Repository and Service in Laravel
In Laravel, the concepts of "Repository" and "Service" are often used to organize code in a way that promotes separation...
-
October 2nd, 2024
Actions vs Repositories in Laravel
In Laravel, there are different approaches to organizing code when interacting with models and business logic. Two common patterns are...
-
February 20th, 2023
Github actions with Laravel Pint
Instead of always running
PHP CS Fixer
orLaravel Pint
locally, it might be a good idea to set up... -
One of the top Laravel questions I hear is "How to structure the project". If we narrow it down, the...
-
May 24th, 2022
Significance of Laravel Maintenance & Support Services
When it comes to expanding your business, you must carry out maintenance and support services for your Laravel websites and...
-
December 30th, 2021
Primitive Types in Controllers and Closure Routes
Something I've not considered is type-hinting primitive types in Laravel controllers. PHP only has four scalar primitive types:
bool
,int
,...