How to Update Table struture using migration – Laravel 8

In Laravel with the use of migration, you can create tables in the database. Using this you can also update the existing table structure. In this tutorial, I show you 2 ways to update table structure using migration in Laravel 8.

Read More
How to Add Download link in Dropzone – Laravel 8

With the use of Dropzone, you can easily add drag & drop file upload area. It displays a thumbnail after file upload but does not display a downloadable link. In this tutorial, I show how you can add download file link in the Dropzone container after file is uploaded successfully in Laravel 8.

Read More
Create jQuery UI autocomplete with PostgreSQL PHP and AJAX

jQuery UI autocomplete allows user to select an item from the suggestion list based on the typed value. You can load suggestion list with and without AJAX. In this tutorial, I show how you can add jQuery UI autocomplete on your page and load PostgreSQL database data using AJAX and PHP.

Read More
How to add Foreign key in Migration – Laravel 8

A foreign key is a field that is used to establish the relationship between two tables via the primary key (You can also use a non-primary field but not recommended). In this tutorial, I show how you can add a foreign key constraint while creation of table using migration in the Laravel 8 project.

Read More