Anthony Vanden Bossche

Results 3 issues of Anthony Vanden Bossche

Hello, I'm getting the following error when using patternomaly as the backgroundColor when using a barchart: ``` Uncaught Error: Unable to parse color from object {"shapeType":"dot"} at Color (vendor-bundle.js:52739) at...

bug

What I am trying to achieve, is to set a different disk depending on the user role like so: ``` if (Auth::user() && Auth::user()->hasRole('superadmin')) { config(['filemanager.disk' => 'public']); } ```...

What I encounter is that Factory::product() does an sql query for categories when I use a Factory::create() call. ``` // create dummy data in db //$user = Factory::create('User'); $user =...