How to add custom action button on page filters?

In this article, we are going to explore how we can add the custom action button on filament pages filters as the image above of quick filters. 1. Create a Page The first step is to create a custom filament page. For that, please refer to this article. In this article, you can find the … Read more

Unlock Multilingual Support with Filament Language Switcher

In this article, we are exploring the Multilingual support with filament admin panel. Laravel Language Before diving into filament language and language switch, lets dive on how actually localization works on laravel. For that, we have 2 ways. Store in File So, the first option is to store the translation string in lang directory. If … Read more

Display custom infolist dynamically in laravel filament

In this article, we are going to explore how can we show infolist dynamically in laravel filament. Click here to check the visual representation of what we are going to create. Create a custom page So, the first step is to create a custom page using the following command: Implement HasForms, Hastables Since, we are … Read more

Building a complete inventory management system – Laravel Filament

We have explored the part of making a complete inventory management system. In fact, we have not created a production level project, but with the help of this system, we explored different filament features. Here you can checkout the complete playlist for this video. The topic that we have covered are listed below with youtube … Read more

Filament Shield for Multi-Tenant Laravel Apps: A Complete Setup Guide

In this article, we are going to explore how we can setup filament shield for multi-tenant laravel apps. 1. Install the package First of all to setup filament shield for multi-tenant laravel app, make sure you have installed and configure your filament projects. Then we will install the package. To install that, hit the following … Read more

Building a Complete School Management System – Features, Modules & Vision

In today’s digital age, schools require robust, scalable, and easy-to-use software to manage day-to-day operations. To address this need, I’m working on building a complete School Management System (SMS) that simplifies administration, enhances communication, and supports student success. Key Modules 1. Academic Session Management The feature includes: Video-1 Video-2 Video-3 Video-4 Video-5 2. Student Management … Read more

How to add filters on dashboard page for widgets?

In this article, we are diving to add filters on dashboard page for widgets. We will create some stats overview widgets and apply filter to them. Check out the official demo. 1. Create a custom filament dashboard page Initially, we will create a custom filament dashboard page and we will extend the base dashboard page. … Read more

Build a Dynamic CMS with Terms & Taxonomies — Playlist Announcement

If you’ve ever worked on a content-heavy website or app, you know that organizing content effectively is just as important as creating it. In this upcoming playlist, I’ll walk you through building a fully functional CMS (Content Management System) that revolves around one of the most powerful but underused concepts: terms and taxonomies. This won’t … 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