-
php artisan route:list
[ReflectionException]
Class auth.driver does not exist
I am having trouble Class auth.driver does not exist.
I performed testing and authentication is working but when I …
-
I just setup new laravel 5.5 project and tried to install this package and I get the following. I will paste it all in here.
What can I do to make it install.
composer require smartins/passpor…
-
If i try Auth::guard('user-api')->user(); I get a user with id 9, and if I try Auth::guard('admin-api')->user(); I get an admin with id 9. so wierd !!! I checked all the things and they were set corre…
ghost updated
5 years ago
-
In my example project, I have three guard, users,partners,admins, but the thing is, If suppose i logged in a got a token of that particular user successfully, but the challenge with the same token I'm…
-
I am facing issue with token on get detail on user.If i add token of same id it get user based on id...BUG
-
@sfelix-martins I tested and I can use the package with personal access tokens. Follow a implementation sample:
```php
Route::middleware('oauth.providers')->post('/token', function (Request $requ…
-
-
I get stuck when I need to use this part
```
// `api` guard on end of guards separated by comma
Route::group(['middleware' => ['api', 'auth:admin,api']], function () {
Route::get('/admin', fun…
-
-
I used: auth:admin and test with user authenticated with guard user and this pass the authorization.
I find the issue in ... /vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.ph…