Mouse over one of a post to see the changes.

POST LIST

Add social share button in Laravel 8 with Laravel Share

Laravel Share package lets you dynamically generate social share buttons from popular social networks to increase social media engagement.

These allow website visitors to easily share the content with their social media connections and networks.

In this tutorial, I show how you can add social share links in your Laravel 8 project using Laravel Share package.

Datatables AJAX pagination with Search and Sort in Laravel 8

With pagination, it is easier to display a huge list of data on the page.

You can create pagination with and without AJAX.

There are many jQuery plugins are available for adding pagination. One of them is DataTables.

In this tutorial, I show how you can add Datatables AJAX pagination without the Laravel package in Laravel 8.

How to make Autocomplete search using jQuery UI in Laravel 8

jQuery UI has different types of widgets available, one of them is autocomplete.

Data is loaded according to the input after initialize autocomplete on a textbox. User can select an option from the suggestion list.

In this tutorial, I show how you can make autocomplete search using jQuery UI in Laravel 8.

How to upload multiple files with Vue.js and PHP

Instead of adding multiple file elements, you can use a single file element for allowing the user to upload more than one file.

Using the FormData object to pass the selected files to the PHP for upload.

In this tutorial, I show how you can upload multiple files using Vue.js and PHP.

Make Pagination with search filter in CodeIgniter 4

CodeIgniter already has a pagination library using which you can easily add pagination on your page.

In this tutorial, I show how you can create pagination with a search filter in the CodeIgniter 4 project.

How to fetch records from PostgreSQL using jQuery AJAX PHP

When working with a database then retrieving data from the database is one of the basic requirements.

With the use of AJAX, you can fetch records without reloading the page.

In this tutorial, I show how you can fetch records from PostgreSQL using jQuery AJAX and PHP.