Posts by Talles Airan • 106 points
3 posts
-
1
votes1
answer1001
viewsA: Sending two or more request by form with ajax
First you must put the token in the meta tags in the head to retrieve the information via ajax <meta name="csrf-token" content="{{ csrf_token() }}"> then configure the global ajax with the…
-
2
votes1
answer700
viewsA: Laravel 5.6 recover data from a form?
On the routes change this way Route::any('/post', 'GuzzleController@post')->name('postForm'); The Route::any will pick up all the methods and how you want just the POST can put Route::post…
-
2
votes1
answer465
viewsA: How to create a link blob in PHP?
I know it’s none of my business, but that in the future when your site grows will cause you a lot of headache. I’ve had problems with this. I was saving music in mysql, I know it gave a very tense…