Laravel
Laravel Cookie Encryption
Laravel Cookie Encryption Laravel encrypts and signs all cookies automatically, to prevent the client from modifying them. Laravel’s encryption is done via…
Laravel Authentication vs. Authorization
Let’s dive into the details: 1. Authentication vs. Authorization: Authentication is the process of identifying who a user is, while Authorization is…
Laravel: Should I use Breeze or Jetstream? And what’s Nova?
Both Laravel Breeze and Laravel Jetstream are officially maintained packages by Laravel for scaffolding out authentication systems. While they might seem similar…
Laravel: Breeze as a Dev Dependency vs. Jetstream as a Production Dependency
When you start a project with Laravel Breeze you require it as a dev dependency like this: composer require laravel/breeze –dev But…
Laravel 10: middlewareAliases, routeMiddleware & middlewareGroups
In new Laravel applications, the $routeMiddleware property of the App\Http\Kernel class has been renamed to $middlewareAliases to better reflect its purpose. Here’s…
Create a New Laravel Project: No-Nonsense, Step-by-Step Guide
Get Your Environment Ready: Fire up your Windows Terminal. Get a new session going with your WSL2 Linux system. Pick an Application…
Laravel: “Remember me” active by default
If you’re looking to have the “Remember me” functionality active by default in the login and registration process, in Laravel, this is…
Laravel’s dependency injection, the Service Container, and related concepts
Let’s dig into Laravel’s dependency injection, the Service Container, and related concepts. Dependency Injection (DI) At its core, dependency injection is a…
Laravel/UI: Implement Email Verification
In Laravel applications using the laravel/ui (link) package for authentication, the feature for verifying an email address after registration is built-in but…
Laravel/UI: Register Without Password, Send Password Via Email
You can modify the registration process in a Laravel application that uses laravel/ui (link) to generate a random password and send it…