Posts by eduardo costa • 99 points
12 posts
-
0
votes1
answer892
viewsQ: Redirect to external link in Laravel
How can I redirect out of my Laravel website? I tried it with Redirect::away() but it didn’t work. I saw some solutions with javascript but I wanted to look for other ways.…
-
0
votes0
answers36
viewsQ: How to add a Form to an array of files?
I made a small script to upload images so you can choose as many as you want. At the end is an array with all the information. How can I make this array with the files go to the request so that the…
-
0
votes2
answers3896
viewsA: Cancel sending jQuery form
I think you have to do something like this: <form id="form"> <input type="text" name="name" id="name"> <button type="button" id="submit">teste</button> </form>…
-
1
votes1
answer35
viewsA: How to access the value of the first . map()?
I decided as follows: @Effect() private newUser = this.actions$ .ofType(UserActions.NEW_USER) .map((action: UserActions.NewUser) => action.payload) .switchMap((userData: UserCreation) => {…
angularanswered eduardo costa 99 -
1
votes1
answer35
viewsQ: How to access the value of the first . map()?
I’m doing an introduction to Redux with angular 4, and when I was doing a @Effect() I came across the following question: @Effect() private newUser = this.actions$ .ofType(UserActions.NEW_USER)…
angularasked eduardo costa 99 -
0
votes2
answers646
viewsA: Push screens Ionic 3
If you are browsing through your root Component you cannot do so. Example: @Component({ template: '<ion-nav #myNav [root]="rootPage"></ion-nav>' }) export class MyApp {…
-
2
votes1
answer452
viewsQ: SQL, subquery if null
I’m doing a query, but I didn’t want it to return NULL. What I got is this: select ifnull(sum(job_withdraw_qty),0) as total, ( select IFNULL(sum(job_withdraw_qty),0) from job_positions where…
-
0
votes2
answers2002
viewsA: Laravel 5.3 - How to change a logged-in user’s password?
But have you tried that method? Normally I do exactly the way you did above and only use the Resetpassword method for users who have lost password. I think the way you want to use it won’t work…
-
0
votes1
answer73
viewsA: Installation phalcon-devtools
I was able to find a solution, it seems when running phalcon code on cmd it did not detect the dll on the xampp server. So I started using ampps and followed the documentation and works well. I…
-
0
votes1
answer73
viewsQ: Installation phalcon-devtools
Good staff, I’m trying to install phalcon-devtools in xampp and I’m doing what the official documentation says to do Here. I already set up the xampp with the phalcon dll and I already did a mini…
-
2
votes1
answer887
viewsQ: Laravel Update With Relationships - Good Practice
I created an Update for a Products table that is related to another table that is the Article(product_info) of this product. Only when I do Update I change the Product information, delete the…
-
3
votes3
answers43
viewsQ: how to execute a specific button on a list of 5 identical buttons
I’m doing a user-friendly Dashboard and I need a button to edit. When the edit button runs it just makes code appear and disappear, but wanted to know if it is possible to execute jQuery code and…