Filament: Login with Google using Laravel Socialite
In this tutorial, we will show you how to add the "Sign in with Google" button to your Filament panel.
In-depth Laravel tutorials covering advanced topics, real-world examples, and best practices.
In this tutorial, we will show you how to add the "Sign in with Google" button to your Filament panel.
SoftDeletes is an Eloquent function that allows you to have the `deleted_at` column, which is easy to integrate into Filament. Let me show you how.
In this tutorial, let's talk about a function that every Laravel developer has used, `dd()`. I will show you various creative ways to use `dd()` in our applications.
Filament Table has a feature of clicking on the row and landing on the Edit page. What if you want to change that and instead open a modal with the record data? Let's do that using Table Actions.
Filament has many pre-defined Table columns, but what if you want to create your own custom one? This tutorial will show you how.
Filament v3 has an awesome Infolist feature, but the components are pretty limited, like `TextEntry` or `ImageEntry`. What if you want to create your own custom entry? This tutorial will teach you how to make a custom Filament Infolist Component with custom CSS styling.
With Blade components and Tailwind, we can create great components in Laravel quickly. And there are also pre-built UI component libraries! This post will show four of them.
Installing the Google Analytics script in Filament is not that easy. Especially once you open the resources folder and realize there are no views. So, where do you put the script? You use Filament Theme Hooks!
In Filament, you may need two-level nested resources, like Courses and Lessons inside of them. Sadly, Filament doesn't have this feature with convenient navigation out of the box yet. But in this tutorial, we will try to build nested resources functionality manually.
Date pickers are quite complex web input components. So, this article will cover how to set up the Vue 3 Datepicker package and do basic customization, saving and updating data.