Alguns princípios do raciocínio da programação orientada a objetos de forma direta, sem envolver revisão de conceitos. … Regras para […]
Tag: # webdev
Difference between include, require, include_once and require_once in PHP
First of all we should know what is the difference and similarity between include() and require(), include() and require() are […]
Using Laravel Resource Collections with exports
Sometimes you need to get data out of your Laravel app so it can be analysed. There are many ways […]
Generators over arrays
I love ❤️ generators in PHP. They are like supercharged arrays that can preserve memory when used correctly. I’ve been […]
How to Validate Email Addresses using Laravel Mailbox Layer
Introduction Data integrity and validation are important aspects of web development and data collection. It’s always important that we (as […]
Why Use The Repository Pattern in Laravel?
In the my last blog post I explained what the Repository pattern is, how it is different from the Active […]
The Easiest Way to Dockerize PHP Applications
What is the easiest way to dockerize PHP applications? Let’s find out with the GitHub repository example. Architecture In order […]
Create a Netflix clone from Scratch: JavaScript PHP + MySQL Day 15
Netflix provides streaming movies and TV shows to over 75 million subscribers across the globe. Customers can watch as many […]
6 Responsibilities Of Controllers (Spring As An Example)
What Is A Controller Anyways? It acts as the entry point to our backend application from the outside world. By […]
Using Keycloak to authorize & authenticate Spring Boot application
Recently I started an SaaS project. For any project, one of the first problems you need to solve is authentication […]