How to Add Remove package using Composer in Laravel

Laravel does not come with pre-installed packages. You will need to install them manually before you can make use of them in your project.

Installing these packages using composer is simple if you know the exact package names or their GitHub repositories.

In this tutorial, I show how you can add remove package using composer in Laravel.

How to add remove package using composer in Laravel

Read more

How to upload file using cURL in PHP

The majority of websites require users to upload files (such as images, documents, etc.) to web pages. Whether you’re creating a platform for file sharing or just need to upload files to a server.

If you are on the same server and upload file then you can easily upload it either directly using PHP or AJAX but if you want to upload it to another server then you have to use cURL.

This tutorial will guide you through the process of using PHP and cURL to upload files, making the web development process faster and more efficient. With just a few simple steps, you can easily upload files to the server.

How to upload file using cURL in PHP

Read more