Laravel Cookie Encryption
Laravel encrypts and signs all cookies automatically, to prevent the client from modifying them. Laravel's encryption is done via the OpenSSL library with AES-256…
Read postEverything in this archive, newest first.
Laravel encrypts and signs all cookies automatically, to prevent the client from modifying them. Laravel's encryption is done via the OpenSSL library with AES-256…
Read postLet's dive into the details: 1. Authentication vs. Authorization Authentication is the process of identifying who a user is, while Authorization is the process…
Read postBoth Laravel Breeze and Laravel Jetstream are officially maintained packages by Laravel for scaffolding out authentication systems. While they might seem similar at a…
Read postWhen you start a project with Laravel Breeze you require it as a dev dependency like this: composer require laravel/breeze --dev But when you…
Read postIn new Laravel applications, the $routeMiddleware property of the App\Http\Kernel class has been renamed to $middlewareAliases to better reflect its purpose. Here's how you…
Read postGet Your Environment Ready Open your Windows Terminal. Start a new session with your WSL2 Linux system. Choose an Application Name Select a name…
Read postIf you're looking to have the "Remember me" functionality active by default in the login and registration process, in Laravel, this is handled through…
Read postLet's dig into Laravel's dependency injection, the Service Container, and related concepts. Dependency Injection (DI) At its core, dependency injection is a technique whereby…
Read postIn Laravel applications using the laravel/ui package for authentication, the feature for verifying an email address after registration is built-in but is not enforced…
Read postYou can modify the registration process in a Laravel application that uses laravel/ui (link) to generate a random password and send it via email…
Read postLaravel offers a robust queue management system that's essential for handling background tasks in applications. Three key settings, namely retry_after, timeout, and backoff, play…
Read post