william gabriel pereira

Results 5 comments of 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 ![image](https://user-images.githubusercontent.com/50017649/177405686-5e645ca1-97f8-48b9-8c1c-f02282a9d19e.png) 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 ![image](https://user-images.githubusercontent.com/50017649/202185541-dae845ff-aaff-4496-9389-01e9e419511e.png) 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); }...