How to Add Row Index / Serial Number in Filament Table

In this guide, we will see how we can add row index in filament table. Problem By default, Filament tables do not show row numbers.In many admin panels, users expect to see a serial number / index column (1, 2, 3…) for better readability. Solution You can easily add an index column using Filament’s TextColumn … Read more

Fetch and Display API Data Using FilamentPHP Custom Tables

In this article, we will explore, how we can fetch and Fetch and Display API Data Using FilamentPHP Custom Tables. 1. Create a custom page First, we will start by creating a custom page. To create a custom page, copy the following command in terminal. You can refer to this article for more depth in … Read more

How to add Filament Table inside modal action?

In this guide, we are exploring how we can add Filament Table inside modal in filament. Whenever we are creating a custom action, we can add form easily by chaining the form() method but we cannot add filament tables resource. So, in this article we will learn to add Filament Table inside modal. Step 1: … Read more

Everything you need to know about Laravel Filament Filters

Filament is a powerful admin panel package for laravel that provides a wide range of filters to apply filtering on the tables. In this article, we are exploring the different types of laravel filament filters in details. Types of Laravel Filament Filters There are mainly 3 types of laravel filament filters. They are as: If … Read more