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·79 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...DiscussLaravel
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·81 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·51 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 Biswasdebjit.hashnode.dev·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·65 readsLaravel
Debjit Biswasdebjit.hashnode.dev·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 likeLaravel
Patricioblog.jpat.dev·Aug 9, 2023Build custom components inside a Filament V3 Panel with Livewire and TailwindCSSI know, Livewire and Tailwind are the base for Filament, and this tutorial is not any hidden gem, but my gut feeling tells me I should write it. It shows few steps of the docs, but many don't get there, and don't even know this is possible. Filament ...Discuss·2 likes·1.2K readsLaravel
Patricioblog.jpat.dev·Aug 3, 2023Filament V3 - How to fill login automatically (local environment)You're reading this, so you want the Login page ready to go in local environments, without having to type in a default user (configured in your seeder). Let's go. Let's create a Filament Page. Press <enter> for an empty answer, when asked if the page...Discuss·560 readsLaravel
Tapan Sharmatapansharma.hashnode.dev·Apr 20, 2023A Guide to Work with PDF Generation in FilamentPHPIntroduction FilamentPHP is an amazing piece of tool that helps in rapidly building Admin Panels. It consists of everything you need to build amazing and performant admin panels. But while building Admin panels, there are cases where you have to buil...Discuss·328 readsLaravel