Laravel 10 CRUD app

In this tutorial we’ll create Laravel 10 CRUD app using default Breeze starter kit which comprise of Blade templates along with Tailwind CSS and AlpineJS. Laravel 10.x requires a minimum PHP version of 8.1. This tutorial assumes that you are using Linux, MacOS or WSL on Windows and Node.js, Composer and PHP 8.1 along with … Read more

Invoicing app in Laravel 9 using TALL stack – part 2

We continue from Part 1 where we created Livewire components for Customer and Item models; now, let’s move onto Invoice model and get the real stuff done. If you happened to land here randomly, then first go through the following articles chronologically since these are the prerequisite before you proceed here any further: Having followed … Read more

Invoicing app in Laravel 9 using TALL stack – part 1

In this article, we’ll build the invoicing app using Laravel 9 TALL (Tailwind, Alpine, Laravel, Livewire) stack. If you want to develop this invoicing app in more traditional way using Bootstrap and jQuery, then follow this link. Or if you want to develop the same using VILT (Vue, Inertia, Laravel, Tailwind) stack, then follow this … Read more

Dynamic input fields using Alpine

In this tutorial we’ll use Alpine.js in order to achieve dynamic input fields functionality. In previous article we used Vue to have the same functionality. Alpine is similar to Vue syntax-wise, however, it’s very lightweight as compared to Vue. Sometimes Alpine is regarded as modern replacement to jQuery and it forms an integral part 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

Simple search in Laravel 9 app using Alpine.js

In this tutorial we’ll build simple search / filter capability using Alpine.js in a Laravel 9 app, so that when you start typing in the search input field, the data presented in the data table is filtered in accordance with the input. Laravel 9.x requires a minimum PHP version of 8.0. This tutorial assumes that … Read more

Laravel – which front to choose?

There was time in webapp development when employing Bootstrap and jQuery at frontend were the most favored options. Then there were heavyweight JS frameworks like Angular, React, Vue to handle interactivity and making webapps’ UI reactive – this gave rise to SPA (Single Page Application). SPAs are actually webapps but behave more like desktop applications … Read more

Laravel 9 tutorial using Breeze

In this tutorial we’ll create Laravel 9 CRUD app using default Breeze starter kit. Laravel 9.x requires a minimum PHP version of 8.0. This tutorial assumes that you are using Linux, MacOS or WSL on Windows and Node.js, Composer and PHP 8 along with required modules i.e bcmatch, sqlite, mbstring, xml, zip, gd, mcrypt are … Read more