TAGS : Database

Create, Run and Rollback Migrations in Laravel 12

Hey there! If you're working with Laravel 12, migrations are an essential part of managing your database structure. Instead of manually creating and modifying tables, Laravel provides an easy w...

Laravel

How to Convert From BLOB to Text in MySQL

In MySQL, the BLOB (Binary Large Object) data type is used to store large amounts of binary data, such as images, files, or encrypted content. However, sometimes I need to convert BLOB data into re...

MySQL

Laravel 11 Replicate Model with Relationships

In Laravel, duplicating a model is straightforward with the replicate() method. However, when it comes to replicating models along with their relationships, the process requires additional steps. I...

Laravel

How to Create Laravel 11 API with MongoDB Database

Hello, laravel web developers! In this article, we'll see how to create Laravel 11 API with MongoDB database. In laravel 11, we'll create an API. Also, we'll use the MongoDB d...

Laravel

How to Create Laravel 11 API with PostgreSQL Database

Hello, laravel web developers! In this article, we'll see how to create laravel 11 API with the PostgreSQL database. Here, we'll create API in laravel 11. Today, we'll walk yo...

Laravel

How to Backup on Dropbox using Spatie in Laravel 11

Hello, laravel web developers! In this article, we'll see how to backup on Dropbox using spatie/flysystem-dropbox in laravel 11. Dropbox is a file hosting service operated by the American...

Laravel MySQL

How to Import Large CSV File in Laravel 11 Database

Hello, laravel web developers! In this article, we'll see how to import large CSV files in the laravel 11 database. Here, we'll import large data with chunks in laravel 11. When we imp...

Laravel MySQL

How to Connect Multiple Database in Laravel 11

Hello, laravel web developer! In this article, we'll see how to connect multiple databases in laravel 11. Here, we'll multiple database connections like MySQL, MongoDB, and PostgreSQL...

Laravel MySQL

Laravel 11 Create, Run and Rollback Migration

In this guide, we'll see how to create, run, and roll back migration in laravel 11. Migrations are like version control for your database. Also, see run specific migration in laravel 11 an...

Laravel MySQL

How to Drop Unique Constraint in Laravel 10 Migration

Hey there, fellow developers! Today, let's chat about something we've all encountered in our coding adventures – dealing with unique constraints in Laravel. You know, those moments wh...

Laravel MySQL

RECOMMENDED POSTS

FEATURE POSTS