hootlex / laravel-moderation

A simple Content Moderation System for Laravel 5.* that allows you to Approve or Reject resources like posts, comments, users, etc.
MIT License
526 stars 68 forks source link

Fixes array cast incompatibility #45

Open koapeadu opened 5 years ago

koapeadu commented 5 years ago

For models with an array cast, the attributesToArray() method returns the cast array instead of the serialized array. So usage of markApproved(), markRejected(), markPostponed() and markPending() methods of the Moderatable trait throw a DB exception due to the attempt to save the raw array instead of the serialized array. So this fix changes the $new->attributesToArray() used in the mentioned methods to $new->attributes.