Laravel updateOrCreate(), firstOrCreate()

laravel updateOrCreate

In this tutorial, we will explore laravel updateOrCreate and firstOrCreate methods in detail. UpdateOrCreate The updateOrCreate eloquent method is mainly used when we either want to update the record or create the record upon some criterias. Lets take a quick example for this: Suppose, we have a setting module with key and value pair. Everytime … 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

How to deploy laravel project in cpanel using git?

In this article, we are going to explore how to deploy laravel project in cpanel using git. Please note that we are not using ci/cd github actions for this deployment. We are using terminal and basic git commands to deploy the projects. Let’s deep dive into the process of depolyment. Let us first create a … 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