seamless-admin
seamless-admin copied to clipboard
Error with date columns
There're js errors, when using a date type column in $fillable property and the list is not rendered.
class User ....
protected $fillable = [
'name',
'email',
'password',
'created_at', //<--- date
];
.......
JS Errors:
Thanks for bringing this to my attention. I will fix it as soon as possible. The fix will be rolled out with the next update.
Just FYI - Today the same error occurred with a new boolean variable in the User's fillable array (new db column). I've cleared all Laravel caches. So probably it's not related to the date column.