Laravel

October 20, 2023

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…

Read More…

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…

Read More…

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…

Read More…

October 19, 2023

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…

Read More…

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…

Read More…

October 18, 2023

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…

Read More…

October 12, 2023

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…

Read More…

October 11, 2023

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…

Read More…

October 10, 2023

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…

Read More…

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…

Read More…