Dominik Eller
Dominik Eller
For me it is working with default setup of this module without any events on local valet setup but not on production server (forge). I am using spatie/laravel-permissons and sanctum...
> ``` > Event::listen(\Lab404\Impersonate\Events\TakeImpersonation::class, > function(\Lab404\Impersonate\Events\TakeImpersonation $event) { > session()->put('password_hash_sanctum', $event->impersonated->getAuthPassword()); > }); > Event::listen(\Lab404\Impersonate\Events\LeaveImpersonation::class, > function(\Lab404\Impersonate\Events\LeaveImpersonation $event) { > session()->put('password_hash_sanctum', $event->impersonator->getAuthPassword()); > }); > Route::impersonate(); > ``` > >...
I am also experiencing this issue. There should be a solution for that.
> With jetstream check the jetstream config file, as this also has 'guard' set to sanctum change this to 'web' > > ` /* |-------------------------------------------------------------------------- | Jetstream Guard |-------------------------------------------------------------------------- |...
Just have a look into your vendor folder
same here. I guess package simply is not yet compatible with laravel 10. Edit: I added a pull request for that: https://github.com/bradcornford/Googlmapper/pull/393
I am having the same when the mailable is queued and not sent synchronously. Is there any solution?