For beginners it's worth to add that in the infolist components and form components there may be a conflict for Section and TextEntry. you may want to use all 4 in the same time. I got this solved adding "as" use Filament\Forms\Components\Section; use Filament\Forms\Components\TextEntry; use Filament\Infolists\Components\Section as InfoSection; use Filament\Infolists\Components\TextEntry as InfoTextEntry; then amend the code with right Classes Names. Took me a while to figure it out.
I recently followed this Filament Laravel tutorial, and I must say it exceeded my expectations. The tutorial is exceptionally well-structured, providing clear and concise explanations for each step of the process. The practical examples and detailed code snippets made it easy to understand how to integrate Filament into a Laravel project. I especially appreciated the troubleshooting tips and best practices shared throughout the tutorial. This resource is invaluable for both beginners and experienced developers looking to enhance their Laravel applications with Filament. Highly recommended!
Is there anyway to extract the duplicate code from CountryResource\RelationManagers\EmployeeRelationManager & EmployeeResource to a trait maybe? Because I find it impractical to redefine the same logic for the form(), table() etc.. methods.
hello, im new to Laravel Filament and i just tried it, i encounter a problem if i remove the /admin in the URL i got an error. i change the code from ->path('admin') to ->path('') beacuse that what is written in the docs. but it's giving me an error. Error: Route [filament.admin.pages.dashboard] not defined.
Hi Tony, thanks for the tutorial, I am from Argentina. Question, I have 1 model User (hasMany) conected to model Post and when I want add new post I must choise for 1 user, but I want the user selected because it is the user session. this field must be included into the post and not to select. Sorry for my poor English
Hi Tony, Thanks for your work Great Tutorial , but... I have one issue. In the Filter and Tab Section, the show All and this week Tab is working fine, but the this Month or this Years Tab, shows also data from the month/year before the actual month/year. Any Idea how to fix this?
i got error 01:07:33 App\Filament\Resources\EmployeeResource::App\Filament\Resources\{closure}(): Return value must be of type Filament\Notifications\Collection, Illuminate\Support\Collection returned can someone solve this
After 1 hour of trying to solve this problem, I noticed that the imported class of collection should be changed to use Illuminate\Support\Collection; This solved my problem
Hello. I have tried to do your project but I always get this ad when I install filament. Installation failed, reverting ./composer.json and ./composer.lock to their original content. What will it be? composer is with the latest update.
are u use laravel 11? i think u should edit file php.ini, change ;extension=intl and ;extension=zip to extension=intl , extension=zip. for version installing use version 3.2.57 composer require filament/filament="3.2.57" -W and dont forget to install liveWIre before installing filament
can you please show some custom actions how to perform in filament? Like want to Active/Deactive employee accounts and invoice generation for employee ?
Am getting a 0 on the email field, and i have been not able to login to the admin panel till now. Just saying "The email address field must be a valid email address." and everytime i refresh the page the email input automatically write 0 as the first option. WHAT CAN I DO, KINDLY HELP
thank you for tutorial. But there is not lesson about custom pages. For example if we want to hav a page "Settings" in admin panel and to have several input forms in that page. And custom routes for that page. It's strange that no one do that in their tutorials.
Laravel Livewire 3 select 2 is not working When I am uploading files, like photos, and videos, select 2 is not working after that, how do I fix it? please help me wire:ignore I have used it but it is required but the error is not showing.
Learn Laravel Filament full tutorial: Build powerful admin panels with ease
So far the best and most complete tutorial I saw. thanks man!
Thanks!
Thank you veri much
I'm learning to use filament, and this tutorial has been very useful. Very detailed and good explanation. Thanks!
For beginners it's worth to add that in the infolist components and form components there may be a conflict for Section and TextEntry.
you may want to use all 4 in the same time. I got this solved adding "as"
use Filament\Forms\Components\Section;
use Filament\Forms\Components\TextEntry;
use Filament\Infolists\Components\Section as InfoSection;
use Filament\Infolists\Components\TextEntry as InfoTextEntry;
then amend the code with right Classes Names.
Took me a while to figure it out.
From Egypt, Thanks so much for your efforts sir 💙
I recently followed this Filament Laravel tutorial, and I must say it exceeded my expectations. The tutorial is exceptionally well-structured, providing clear and concise explanations for each step of the process. The practical examples and detailed code snippets made it easy to understand how to integrate Filament into a Laravel project. I especially appreciated the troubleshooting tips and best practices shared throughout the tutorial. This resource is invaluable for both beginners and experienced developers looking to enhance their Laravel applications with Filament. Highly recommended!
Awesome course on Filament 3. All in one video.
Thank you for this tutorial , it's very clear !
Thanks a lot for your complete tutorial with excellent quality
You are welcome!
Hi. Awesome tutorial. Thank you so much.
Thank you, I needed this. I've been using PHP native (yes it's still widely used in my country) for a while and I think it's time to learn Laravel.
Damn, I would have never known we can make admin dashboard this easy if it weren't for you
Glad it was helpful!
Omg, here is Surtr enjoyer)
Thank from Cambodia ❤
Amazing bro. Thank you so much
Saved it to watch and follow along later, you're the best🎉
This was clear and on the point. Thank you!
I finished this video. Thanks so much!!!!!!!!!!!!
Tony, this is incredible. Thank you for putting in the work.
Hello Sir, I am impressed. That's really nice
tnx a lot, it helped my project sufficiently
Super helpful! Thank you!
Thank you very much, excellent tutorial
THANK YOU VERY MUCH BRO.. EXCELLENT TUTORIAL
Can you tell me what auto-completion extension you are using? thank you!
Well done.
thank you very much sir!
What VS Code theme do you use?. thanks 😊
thank you very much!
thx for that great tutorial
Hi. i have question. how to set route to /admin when login using user that is_admin=1 ? Thanks
Thanks so much Tony. Please what app do you use for screen recording???
Thanks brother. What plugins vs code that use for autocomplete?
Is there anyway to extract the duplicate code from CountryResource\RelationManagers\EmployeeRelationManager & EmployeeResource to a trait maybe?
Because I find it impractical to redefine the same logic for the form(), table() etc.. methods.
Thank you Tony, it is possible to implement Progressive web app (WPA) in laravel with filamentPHP.
I have an error, MenuItems visible() isn't existing method. How can fix this?
Hoiw do you display the phone code without the cvomma separator?
many thanks for that video but i can not fix the following error Class "NumberFormatter" not found, can you help ?
Can we use the filament multi tenant in api for react native
Thank you
Check point: 1:16:49
Hi Tony. I keep getting Route [login] not defined. after running php artisan make:filament-resource User --generate --view
thank you😭
hello, im new to Laravel Filament and i just tried it, i encounter a problem if i remove the /admin in the URL i got an error.
i change the code from ->path('admin') to ->path('') beacuse that what is written in the docs. but it's giving me an error.
Error: Route [filament.admin.pages.dashboard] not defined.
Hi Tony, thanks for the tutorial, I am from Argentina. Question, I have 1 model User (hasMany) conected to model Post and when I want add new post I must choise for 1 user, but I want the user selected because it is the user session. this field must be included into the post and not to select. Sorry for my poor English
So you have user model with hasMany posts relation? If so OK. You don't need to select the user.
thank you so much for amazing tutorial, can you please tell me about how you get filament autocomplete and auto import ???
I use VS Code Extensions ua-cam.com/video/YsgIFw_bxEI/v-deo.htmlsi=ooIaM5lmEaRofGJn
Hi Tony, Thanks for your work Great Tutorial , but... I have one issue. In the Filter and Tab Section, the show All and this week Tab is working fine, but the this Month or this Years Tab, shows also data from the month/year before the actual month/year. Any Idea how to fix this?
Any update??
I found the problem, it is syntax problem check your code in badge
i got error 01:07:33 App\Filament\Resources\EmployeeResource::App\Filament\Resources\{closure}(): Return value must be of type Filament\Notifications\Collection, Illuminate\Support\Collection returned can someone solve this
Any news I encountered same error
After 1 hour of trying to solve this problem, I noticed that the imported class of collection should be changed to
use Illuminate\Support\Collection;
This solved my problem
Hi mate, which extension did u use to import class or method automatically?
php namespace resolver
hello, thank you for this, but how can i change the login page into my own login page?
Hello.
I have tried to do your project but I always get this ad when I install filament.
Installation failed, reverting ./composer.json and ./composer.lock to their original content.
What will it be?
composer is with the latest update.
You can't install filament??
are u use laravel 11?
i think u should edit file php.ini, change ;extension=intl and ;extension=zip to extension=intl , extension=zip.
for version installing use version 3.2.57
composer require filament/filament="3.2.57" -W
and dont forget to install liveWIre before installing filament
In case you have problem installing filament with fresh laravel: `$ composer require filament/filament="3.2.57" -W
`
I getting error while foreginid and cascadeondelet while migration..love from india..what need to do
Thanks for this video. What theme is this in VS code ? I like your colors
I use Aura and Ayu
can you please show some custom actions how to perform in filament? Like want to Active/Deactive employee accounts and invoice generation for employee ?
Nice tutorial ,do you know how to make bulk action export on pdf and excel in filament?
search for a filament plugin called excel export
How I can reorder groups? You showed how can reorder items in groups, but not groups itself.
Thank you for your work.. can we please have a laravel next js 13 auth tutorial ☹️
Use Laravel Breeze
Am getting a 0 on the email field, and i have been not able to login to the admin panel till now. Just saying "The email address field must be a valid email address." and everytime i refresh the page the email input automatically write 0 as the first option. WHAT CAN I DO, KINDLY HELP
Wow❤
Great
U from Albania?
Huahhhhhh ❤❤❤
thank you for tutorial. But there is not lesson about custom pages. For example if we want to hav a page "Settings" in admin panel and to have several input forms in that page. And custom routes for that page. It's strange that no one do that in their tutorials.
If there are too many plugins it feels slow
2:44 ✍🏻
42:25
❤
Laravel Livewire 3 select 2 is not working
When I am uploading files, like photos, and videos, select 2 is not working after that, how do I fix it?
please help me
wire:ignore I have used it but it is required but the error is not showing.
Possibly you need to use
document.addEventListener('livewire:init', () => {...})
To re-initialize it. Check the documentation.
need some help cloned your repo but am getting a 500 | server error
found the solution, its a missing .env file
.
Thank you