Commit for this lesson: https://github.com/LaravelDaily/Laravel-Filament-Admin-Course/commit/cfd272047b2b5bdb63d855ba5ce07979b10b7939
Comments & Discussion
IL
Is it possible to use the panel without authentication? I'm building a desktop app using Electron and Laravel and it doesn't use users, I'd like it to open directly in the dashboard
AB
Can we use filament admin in fresh new project, or we actully need some data to work on it?
AU
I have an old project (laravel 10), made by some intern (MVC) but no views => just apis & frontend is in another framework (hosting 2 domains, one for the backend & one for the frontend app); project doesn't have laravel ressources, can I still use filament for the super admin panel just to view stats/dashboard & manage users & roles (super admin have multiple companies) so maybe could this work with multi-tenancy in filament or just basic filament?
Hi @Povilas,
I just want to use my admins table for admin login. Where can I set that?
I don't think Filament supports that specifically. What you need is probably config/auth.php in Laravel, check the options here: https://github.com/laravel/laravel/blob/9.x/config/auth.php
ok, will check, but another thing which I was looking for, I want to execute some code when a new record is created or old is updated, How can we call the related hook or closure in resource?
Again, I would to it outside of Filament, with Model Observers: https://laravel.com/docs/9.x/eloquent#observers