Ahtesham Abdul Azizhashnodeblog.clcbws.com·Jul 6, 2024Building laravel admin panel easilyHi As you all know as a backend developer, we have complications building admin panels (specially: UI) I also get headaches and very much confusion while building admin panels, so I research and more research over the year how to resolve this. I also...Discussfilamentphp
Debjit Biswasblog.debjit.in·Feb 14, 2024Enum in Laravel and Filament💡 Example Repo: https://github.com/debjit/OneDataExpress/tree/dev I am currently using Enum a lot in my projects for status. And it was really good, and when I added this to Laravel and Livewire, it just got better. You can learn about Enum here. ...Discuss·49 readsWordPress
Suluh Snotes.suluh.my.id·Jan 20, 2024Customizing User Profile and Password Change Pages in Filament 3A few months ago, I started using Laravel, which I used to dislike. I discovered Filament, a form builder built with the TALL (Tailwind, Alpine.js, Laravel, Livewire) stack. I fell in love with it because it significantly sped up tasks that used to t...Discuss·543 readsfilamentphp
Fazail Alamblog.mfazail.com·Oct 14, 2023❤️ the way of filament? Well you can use filament outside of admin panel too.In this guide, we will be building a simple quiz app where user can submit their answer and see the given answers in the table below. Theme change Let's start by changing the theme because most of you don't want the default theme in your application....Discuss·275 readsLaravel
Tapan Sharmatapansharma.hashnode.dev·Oct 9, 2023A Guide to Override the default Login behavior in FilamentPHPIntroduction The default login class that comes with Filament is sufficient for most cases since it contains the email and password field along with a remember_me checkbox. However, there are some cases where you must override the default behavior an...Discuss·27 readsLaravel
Fazail Alamblog.mfazail.com·Oct 9, 2023Branding customization in Filament v3 admin pannelBrand Logo Let's start by customizing the brand logo, There are two ways we can change the default brand name or logo. By method ( ⚠️ filament v3.0.53+) use Filament\Panel; public function panel(Panel $panel): Panel { return $panel ...Discuss·244 readsfilamentphp
Fazail Alamblog.mfazail.com·Oct 8, 2023A quick guide for filament v3 setup and running💡 Filament v3 requirements: PHP 8.1+, Laravel v10.0+, Livewire v3.0+ Why this? Some devs might be in a hurry or want to take a quick look at what Filament is and what it is used for. Please note this guide is for new projects don't follow this gu...Discuss·213 readsfilamentphp
Roberta Akotorobbieakoto.hashnode.dev·Oct 2, 2023How to use Filament PHP with laravelFilament PHP is an open-source package for the Laravel PHP framework. It is a library of components for quickly building admin interfaces for Laravel applications. Prerequisites PHP version 8.1 Laravel 10 Livewire By this time, you would have cr...DiscussLaravel
Debjit Biswasblog.debjit.in·Sep 18, 2023Automatically update slug based on a text field in filament.💡 You need Laravel, Livewire, and filament knowledge. I am working on an application and found that I needed to update another text input based on the title. With JS, it is simple. But with filament, it is simple too. Lets start. The scenario is t...Discuss·235 readsLaravel
Debjit Biswasblog.debjit.in·Aug 24, 2023Filament Tips: Stop user from creating new items.I need to stop users from creating new items, and it is pretty easy. Here are the code snippets:Add this static function to your resource file, and that is all. You are done. // Can not create any order public static function canCreate(): boo...Discuss·1 like·36 readsLaravel