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)
Setting cookies in Laravel Octane / Swoole
I'm attempting to set cookies on Laravel Octane, however the cookies appear to be not defined on the given index.
setcookie(self::JWT_TOKEN_COOKIE, $token_details['access_token'], [
'httponly...
Oliver Kucharzewski
Votes: 0
Answers: 1
Laravel Octane Event Listener not firing
I'm using laravel sail to run laravel octane on swoole.
I made a change to my EventServiceProvider:
<?php
namespace App\Providers;
use App\Events\SubscriptionCreated;
use App\Listeners\CreateUser...
Simon Chawla
Votes: 0
Answers: 1
How to change database connection dynamically in laravel-octane?
I need to change database dynamically on the fly in laravel-octane or laravel-swoole package.
I am working on a custom multi tenant system. Application is working fine without swoole/octane.
Al Emran
Votes: 0
Answers: 0
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