Mohammad Shahrokhi
Mohammad Shahrokhi
I found this issue seems to be the result of this section of JS file ( Line 32 - 47 ): `Array.prototype.toNumber = function() { return this.map(function(item) {return Number(item);}); };...
Fortunately, I found that "this" is undefined sometimes in this functions and I added an if statement before any "this" in this section of code and it works fine now....
Hi Solution is: Change **strict** value in **config/database.php** to false like this: ``` 'mysql' => [ 'driver' => 'mysql', 'host' => env('DB_HOST', 'localhost'), 'port' => env('DB_PORT', '3306'), 'database' => env('DB_DATABASE',...