Posts by aguiar677 • 59 points
7 posts
-
1
votes1
answer488
viewsQ: AJAX in the Laravel
I am trying to send data to my controller using AJAX but am getting the following error: AJAX error: error : Not Found What can I be doing to solve this problem? follows the codes: route:…
-
0
votes1
answer224
viewsQ: How to prevent a user from accessing another user’s ID when editing a post by making improper changes?
I was looking for a way that the logged-in user could not access another post when editing, just changing the id on url and implemented something like this, where it will be added to Controller that…
-
-1
votes2
answers562
viewsQ: Use update method without using Edit, Laravel
I have a view q shows a user’s access key, in it I need to press a button q will update the access key randomly, the update returns to the view but does not modify the key. How can I fix this?…
-
0
votes1
answer62
viewsQ: Error calling table item in Laravel
I have a View in the Laravel that shows the access key and the secret key of the api user, these two keys are pulled from the database to the View, i want to be able to edit only the access key when…
-
1
votes2
answers52
viewsA: Random key during user creation
Updating, just integrate to Laravel the gladcodes/keygen repository gladchinda/keygen-php and then call: return Keygen::numeric(8)->generate(); in a function of Controller users, making the hash…
-
2
votes2
answers52
viewsQ: Random key during user creation
In my migration of User owning: name, id, email and authorization key, however, I would like to know whether it is possible to authorization key is created randomly during user creation, this key…
-
1
votes1
answer261
viewsQ: Return database search with Controller
I’m trying to take the content name of an input from my search page (Search), and send it to another view (Data), where the controller will receive this value and from there will search the database…