Middleware auth + custom in Filament Blade
can i ask something differnt? i have some page
/building/id
/my/transaction
/my/booking
btw, for now, i will stay on /admin/login as login page route
i want to make a middleware for check does user have change their default password? if not they will redirect ot reset-password page, if user already change their default password, they can acccess di page
how do i implement this middleware in filament, i also want to check if user already login or not, if they didnt login yet, the will redirected to login page
8 Replies
by adding it to the ->authMiddleware() in the panel provider
why in panel provider? even if i create a custom page with blade sir?
i want to add middwware for building/show.blade.php sir

You are saying you want a middleware to check if the user needs to change their password. So if you add it to the auth middleware people will be checked if they need to change their password and redirect them accordingly.
If you have built a custom page like you say building you can add the middleware to that resource/page only too with the middleware property
sorry, i am new in laravel, is custom page with resource/page same with create view in laravel blade?
Yes and No. It is a Livewire Page, which has a blade. But much more powerful. Custom pages can be used just like a normal laravel blade but also with livewire.
On a Filament Page you should be able to declare:
ohh i see, the context of my question is, what about if i using laravel blade for createing my page, how to add middlware like i want?
So a blade cannot be rendered as a route or a page without a controller, In Filament we use 'Pages' this renders your blade. So just put your blade in the blade generated from the page creation and apply the above middleware into the page class. And it is done.