How to Add MEDIUMBLOB Data Type Using Laravel MigrationIn this tutorial, we’ll walk you through how to add a MEDIUMBLOB data type to a database table using Laravel migrations. We’ll break…Aug 21, 2024Aug 21, 2024
How to Encrypt and Decrypt Database Fields in LaravelEncrypting and decrypting database fields is an essential practice to ensure sensitive data like passwords, credit card details, or…Aug 16, 2024Aug 16, 2024
How to Create a User from the Tinker Command in LaravelLaravel provides a powerful REPL (Read-Eval-Print Loop) called Tinker, which allows you to interact with your Laravel application’s code…Aug 15, 2024Aug 15, 2024
Laravel 11 New Model::casts() Method ExampleLaravel 11 introduces a new Model::casts() method, making it easier to handle attribute casting in your Eloquent models. This article will…Aug 13, 2024Aug 13, 2024
How to Add QR Code in PDF Using DomPDF in LaravelAdding QR codes to PDFs is a common requirement in various applications, such as invoices, tickets, and reports. In this guide, we’ll walk…Aug 12, 2024Aug 12, 2024
Laravel 11 Add Watermark on Image TutorialAdding a watermark to images can be a useful way to protect your content or add branding to your visuals. In this tutorial, we’ll learn how…Aug 10, 2024Aug 10, 2024
How to Add a Blur Effect to an Image in Laravel 11Adding a blur effect to an image can be a useful feature in various applications, from creating visual effects to adjusting image quality…Aug 9, 2024Aug 9, 2024
How to Compress Image Size in Laravel 11Compressing images helps in reducing their file size, which can be beneficial for faster loading times and reduced storage usage. Laravel…Aug 8, 2024Aug 8, 2024
How to Generate Thumbnail Images in Laravel 11Generating thumbnails is a common task when dealing with images in web applications. Thumbnails are smaller versions of images that are…Aug 7, 2024Aug 7, 2024
How to Set Default Values in Laravel ModelIn Laravel, you might often need to set default values for your model attributes. This can be useful when you want certain fields in your…Aug 6, 2024Aug 6, 2024