André Rodrigues
André Rodrigues
FFilament
Created by André Rodrigues on 12/20/2023 in #❓┊help
Doesn't find the components
No description
3 replies
FFilament
Created by André Rodrigues on 11/14/2023 in #❓┊help
Login 2FA
Guys fast doubt, there's any way to use the Jetstream Authentication 2FA with Filament to login? I did something clean like: In my AdminPanelProvider I removed the
use Filament\Http\Middleware\Authenticate;
use Filament\Http\Middleware\Authenticate;
and added
use App\Http\Middleware\Authenticate;
use App\Http\Middleware\Authenticate;
So in my routes/web.php I added:
Route::get('admin/login', function () {
return redirect()->route('login');
})->name('filament.admin.auth.login');
Route::get('admin/login', function () {
return redirect()->route('login');
})->name('filament.admin.auth.login');
Obs: I know there's a composer package that filament supports, but I want to make with own Jetstream.
4 replies
FFilament
Created by André Rodrigues on 9/28/2023 in #❓┊help
Change Resources Path
Hello guys, theres any way to change the path from Resources? For example I use the nwidart modules and I would like to change the Resources path to any module I have.
15 replies