How to check if the created request is made through Filament?
Hello,
I am trying to create status of booking in my project using the Observer to be "confirmed" if the booking is created using the Filament Panel and "unconfirmed" if the booking is created using the API or any request other than Filament Panel.
Please let me know how do I detect if the create request is made through Filament Panel or not?
Thank you so much
Solution:Jump to solution
Just a shot in the dark (not tested). But could you use
Filament::isServing()
to determine wheter or not it was from Filament? 🤔5 Replies
bump
Not sure how to check Filament in observer, but the easy solution would be check from API or Web.
Eg: In API call, just put
confirmed=false
and similarly from web as well.
Or you can customize data for Filament without using Observer@Vp I added the handleRecordCreation in the Filament Create page and removed the code from observer, it is working but I thought may be there is a way to detect where the request is coming from so all can be handled in Observer.
Thank you so much.
Solution
Just a shot in the dark (not tested). But could you use
Filament::isServing()
to determine wheter or not it was from Filament? 🤔@dissto I will check it now, thank you
@dissto it works great, thank you so much.