How to Send GET and POST cURL request in CodeIgniter 4

The CURLRequest class that comes pre-installed in Codeigniter 4 makes it easy to send cURL request from the application.

It allows you to make requests via GET, POST, PUT, and other methods on various endpoints.

With this blog post, you will be able to understand about sending cURL GET and POST request using CURLRequest Class in CodeIgniter 4 and implement it in your project.

How to Send GET and POST cURL request in CodeIgniter 4

Read more

Setup Bootstrap auth Login and Registration in Laravel 9

Have you ever built a website or a web application that requires users to login and register to use its features? If so, you’ve probably realized how much work it can be to create your own authentication system from scratch.

Laravel already provided user authentication but it is not by default implemented on the project.

You need to manually run a few provided commands to set it up.

In this article, you will see how to implement Bootstrap auth Login and Registration in Laravel 9 applications.

Setup Bootstrap auth Login and Registration in Laravel 9

Read more

Mastering Database Seeding in Laravel: A Step-by-Step Tutorial

Database seeding in Laravel is an essential process that facilitates the insertion of dummy or sample data into a database.

The purpose of seeding is to streamline development by eliminating the need to write individual SQL statements for populating database tables. Laravel offers a convenient method to create and maintain seeder files.

One significant advantage of database seeding is the ability to test an application without entering real data. By populating the database with mock information, developers can ensure the proper functioning of their code.

This article pre­sents a step-by-step guide­ on how to create and exe­cute a seed file­ in Laravel 10.

Mastering Database Seeding in Laravel: A Step-by-Step Tutorial

Read more