Posts by Eduardo JC • 3 points
4 posts
-
-2
votes2
answers28
viewsA: Updating payment status using Cron in the Standard
The question is quite widespread, but what you want to do in the Standard is called Task Scheduling. The documentation of how to use it is below: https://laravel.com/docs/8.x/scheduling but I guess…
-
-2
votes1
answer61
viewsA: webdriver.get(url) with problems accessing B3 website consistently
Have to check if the Wait of (10) would be seconds, if it is ta very little time to load the site can put something around 60s at least. Here in my git I make a connection to extract data from the…
-
-2
votes3
answers82
viewsA: Merge two dataframes of the same name keeping all columns
Oops good morning! First what you want to do calls "merge" that would join in English the 2 DF Here’s a tutorial in English to help you with this:…
ranswered Eduardo JC 3 -
1
votes1
answer31
viewsA: Redirect from a URL within the Laravel
You have the following options OPTION 1: Create a route Route::get('/customers','Your controller@your function'); in your controller create the function that calls the view, public function…