V3 equivalent of `Filament::serving`

What is the V3 equivalent of Filament::serving? For example, where do I put
Debugbar::disable();
Debugbar::disable();
Solution:
I think it's still doable in any service provider in your app
Jump to solution
6 Replies
Solution
Lara Zeus
Lara Zeus2y ago
I think it's still doable in any service provider in your app
Lara Zeus
Lara Zeus2y ago
Filament::serving(function(){
dd(9);

});
Filament::serving(function(){
dd(9);

});
Dennis Koch
Dennis Koch2y ago
Btw. no need to disable Debugbar in Filament. Just disable the View Collector on the debugbar config. Maybe not even needed in v3 anymore
bernhard
bernhardOP2y ago
Ok, so serving is still just fine? You are right, I can disable Debugbar by adding it to the except config of debubar
'except' => [
'telescope*',
'horizon*',
'admin*' // filament path
],
'except' => [
'telescope*',
'horizon*',
'admin*' // filament path
],
Maybe not even needed in v3 anymore
Well it looks like its still needed
toeknee
toeknee2y ago
Orrr just disable the view collector 😉 Personally I removed debug bar and use telescope isntead.
Patrick Boivin
Same! Telescope makes it easier to follow a single Livewire component across many actions/requests.

Did you find this page helpful?