In this tutorial, I’ll walk you through setting up database notifications using Filament in your Laravel application. We’ll cover how to send notifications and configure real-time updates. Step 1: Install Notifications Require the Notifications package using Composer: Run the following command to install the Notifications package assets: Step 2: Implement Notification Use the Filament\Notifications\Notification class to create […]
I was working on a project in Laravel using FilamentPHP v3 and decided to write this article to share how simple it is to add a user profile picture feature and display it as an avatar. Let’s dive in! 1. Add/Update Profile picture option: Step 1: Update Your Database First, we need to add a […]
While working on a Laravel app, I ran into an annoying problem that I’m sure many of you have faced. I had created a few custom variables in my .env file and was using them throughout my app with the env('VARIABLE_NAME') function. It was working fine until I made some changes to the app. Suddenly, […]