Barbaracrlp
filterCollapsible open by default
I want it to be collapsible, but qhen you enter the page is open, just if the user wants to hide it, it will collapse. I found AboveContentcollapsible and it is the one I want I just need it to appear open by default
7 replies
MEthod Post in my Login Blade
can't show all of it though if (!$user || !self::verificaContraseña($contraseña, $password)) {
$this->throwFailureValidationException();
}
// Optionally, you can perform additional checks or actions here if needed
if (
($user instanceof FilamentUser) &&
(! $user->canAccessPanel(Filament::getCurrentPanel()))
)
{
Notification::make()
->title('Acceso denegado')
->danger()
->icon('heroicon-o-document-heroicon-o-document-text')
->send();
Filament::auth()->logout();
error_log('no entra por el acceso');
$this->throwFailureValidationException();
}
$usuario = Filament::auth()->login($user,false);
// If authentication is successful, regenerate the session
session()->regenerate();
return app(LoginResponse::class);
}
11 replies