Ant Design Vue datatable in Laravel 9 VILT app

In this tutorial we’ll embed datatable functionality in a Laravel 9 VILT app using Ant Design Vue Table component. To achieve full optimization, sorting and pagination will be done at client-side while searching will be routed to server-side through Inertia.js in order to always have updated data. Laravel 9.x requires a minimum PHP version of … Read more

AJAX search field in Laravel 9 app using Alpine.js

What we learned in previous article is simple search within the data which is already available to client; let’s up the ante and employ Fetch API to make AJAX calls from within Alpine.js in order to dynamically update the data table from backend database. Laravel 9.x requires a minimum PHP version of 8.0. This tutorial … Read more