Building Dynamic Menus in Filament + Laravel

Building dynamic navigation menus is a common requirement in modern web applications. Whether you’re creating a CMS, a SaaS dashboard, or a content-driven website, hardcoding menus quickly becomes difficult to maintain and scale. In frameworks like Laravel, developers often rely on structured data and admin panels to manage application content. This is where Filament becomes … Read more

How to add Tabs on custom filament page?

In this guide, we will explore how we can add tabs on custom filament page. Create a page to add tabs on custom filament page To create a new filament page, just hit the following commad: You can explore more about creating filament custom page in this article. Implement HasTable Second step will be to … Read more

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

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

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

How to add custom actions on Filament dashboard page

In this article, we are going to add custom actions on filament dashboard page. In this article, we are going to discuss essential laravel filament tips and tricks that every developer must know. In the last article, we discussed about 5 such filament tips and tricks. You can check that article here. To check add … Read more

How to Customize Dashboard Page Using Filament Built-in Widgets

Dashboard Page Using Filament

How to Customize Dashboard Page Using Filament Built-in Widgets Learn how to extend your web application’s dashboard using built-in widgets provided by Filament. This tutorial will walk you through customizing your dashboard page and give you a more dynamic, user-friendly interface. Perfect for developers looking to streamline their projects with powerful, pre-built components. Filament offers … Read more

Dynamic Multi-Tenant Settings Page in Filament

Dynamic Multi-Tenant settings Page in Filament : A Step-by-Step Guide. The following tutorial should provide you with a flexible, scalable solution. In multi-tenancy, handling the settings of web applications is very tricky. Filament is a Laravel admin panel package that makes handling global settings for admins and tenant-specific settings very easy. In this article, you … Read more