Daniel Doyle

Results 23 comments of Daniel Doyle

Hi @jeroencusters, did you manage to resolve your issue? Thanks

Hi @cjayalmontecm, as the reservation table is disabled in this module, is this issue now fixed? Thanks

Hi @seeligk, is this still in issue? If so, any chance you could fork and make a PR with your patch? Thanks

Hi @satinderjot-tech, is this still an issue? Thanks

Any updates on this?

I'm having a similar issue, I'm passing client_id, client_secret, grant_type, username and password to /oauth/access-token with paw/postman/whichever and receiving back the error Fatal error: Class '\App\User' not found in /vendor/illuminate/auth/EloquentUserProvider.php...

Well, rookie mistake here... Moving the User.php to the App route fixed it. Will update where the model resides later... For what it's worth, I'm using Dingo and my routes...

But still getting the `First parameter must either be an object or the name of an existing class` issue, will update when I know more

Also, I modified Proxy.php like so (to use the request object): ``` PHP namespace App\Auth; use GuzzleHttp\Client; use Illuminate\Http\Request; class Proxy { public function attemptLogin(Request $request) { $credentials = $request->get('credentials');...