Posts by Sara Kemily • 26 points
3 posts
-
0
votes0
answers26
viewsQ: Parameters are not being sent in the URL
Good morning. I’m trying to send some parameters through the url to another page but only one is being sent. I’m sending it this way:…
-
0
votes3
answers781
viewsA: How to view the data of the last saved record in the database
You can order by the highest id (last added) and take the first record of the returned list, with the first() of eloquent. example: DB::table('tabela')->orderBy('id', 'DESC')->first(); This…
-
0
votes2
answers1348
viewsQ: error while doing git push
I’m trying to upgrade a project to github but always q dou git push this error: error: src refspec master does not match any error: failed to push some refs to…