Posts by Douglas Salomão • 31 points
6 posts
-
-1
votes2
answers499
viewsA: Api Restful Lockable 5.2
The solution to my problem was the link: Laravel-jwt-auth
-
1
votes2
answers499
viewsQ: Api Restful Lockable 5.2
Hello, I am trying to create an api in Laravel 5.2 what I’m trying to do is this: 1 - continue using default auth system for web user. 2 - create an api for users of an application. I am using the…
-
0
votes0
answers404
viewsQ: Login and Register on the same page - Laravel 5.2
Hello, I am developing a web system using Standard 5.2 and used make:auth to generate the Standard login system, but I came across the following problem: I want to use the registration form on the…
-
0
votes2
answers2904
viewsA: How to redirect the authenticated user to a specific page?
I was able to solve the problem by including the following route in my Routes.php: Route::group(['middleware' => ['web']], function () { Route::get('/', 'Auth\AuthController@getLogin'); });…
-
1
votes2
answers2904
viewsQ: How to redirect the authenticated user to a specific page?
I am restricting the registration page only to be shown or accessed after the login. A friend of the stackoverflow group told me that could be doing this way: public function __construct() {…
-
1
votes1
answer779
viewsQ: How to restrict access to user registration page?
Following people I am creating a project in Aravel 5.2 I used the auth classes of the Aravel itself. And I’d like to know how I can be setting up the same for that page /register is accessed only…