© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•3y ago•
4 replies
PANC

Can i use breeze authentication on filament?

Like the title says. Is it possible to use the auth system from breeze in the filament login?

I have a Laravel system that authenticates uses using LDAP and i build this inside breeze.

I want to use the same system to auth users in filament using breeze package.

Can i do this with the filament-breezy package?

Thank you
Solution
Was able to solve it creating a app/Filament/Auth/Login.php

public function authenticate(): ?LoginResponse
{
$data = $this->form->getState();
$user = User::where('username', $data['username'])->first();

//LDAP LOGIN using ldap_connect

//Then if the LDAP returns true
Filament::auth()->login($user);
}


Then i got an error saying that something went wrong with the getUserName() method from FIlament
Was fixed by editing the user model implementing the HasName and declaring

public function getFilamentName(): string
{
return $this->name;
}
Jump to solution
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources
Was this page helpful?

Similar Threads

Recent Announcements

Similar Threads

Filament and breeze
FilamentFFilament / ❓┊help
3y ago
Laravel Breeze and filament
FilamentFFilament / ❓┊help
2y ago
Use API authentication in Filament
FilamentFFilament / ❓┊help
12mo ago
Can I use the scaffold option on a fresh Breeze application?
FilamentFFilament / ❓┊help
3y ago