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

The Ultimate Guide to Extending Filament Form Resources

Have you ever needed to reuse the same form fields across multiple resources in Filament? If yes, then how did you implement it?. In this guide, we will explore different techniques for reusing or extending filament form resources. Check out the official docs for filament. Introduction So, first of all , lets took a look … Read more

Implementing Tenant-Specific File Uploads in Laravel with stancl/tenancy: A Complete Guide

Dealing with file uploads in multi-tenant Laravel applications is a challenge unlike others: how do you isolate each tenant’s files and make them accessible to them alone? The stancl/tenancy package provides extremely powerful multi-tenancy tools, but file storage requires attention to configuration. Please check out the setup process for multi-tenancy. Also checkout official docs for … Read more

The Ultimate Guide to Filament Render Hooks for Laravel Developers

In this article, we are going to explore the different filament render hooks. Filament render hooks are the special placeholder that allow developers to inject the custom Blade component or any other UI component at any specific point in the admin panel. Registering Render Hook To register filament render hooks, we can call FilamentView::registerRenderHook() from a service … 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