william gabriel pereira
william gabriel pereira
Hey guys, if you are using "not multi device" you need to change the authStrategy to LegacySessionAuth like documentation shows here [https://wwebjs.dev/guide/authentication.html#legacysessionauth-strategy](url)
I don't know if will help, but when you set any event, each will instantiate another chromium, at least that's what is happening to me  running 3 events (ready,...
Hi @staudenmeir, I'm using belongs-to-through v: 2.12.1 and eloquent-json-relations v: 1.6.3 All i can share from models is that, hope it's enough ``` class Company extends Model { protected $table...
I'm using a custom cast that create an array of objects  Using default cast json it works, but maybe can we change this to works with array of objects?
``` use App\Helpers\Library\Cast; use Illuminate\Contracts\Database\Eloquent\CastsAttributes; class Objects implements CastsAttributes { public function get($model, $key, $value, $attributes) { return self::cast($attributes[$key]); } public function set($model, $key, $value, $attributes) { return Cast::ArraySet($value); }...