python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Laravel HTTP facade does not return content-length in response headers
I have a controller which calls multiple GET requests from Gmail API,
Basically, I am trying to get most recent 50 SENT MESSAGES.
What I did was pool these requests, and loop the Pool response and ins...
devme deveper
Votes: 0
Answers: 1
How to use DB:: from helper class
I have a helper class name common.php in App\Helpers folder. I want to use DB:: facade here to use some db table. In helper method My code is -
<?php
use DB;
function ref_number()
{
$last_row ...
mahbub
Votes: 0
Answers: 1
Memory leak when using Http facade with Laravel Octane
Does anyone have idea why is memory going up for every request when I'm using Http facade with Laravel Octane ?
Route::get('test', function () {
Http::get('https://swapi.dev/api/people/1');
return me...
Osta
Votes: 0
Answers: 3