cloudcake / laravel-approval

Attach an approval process to any model, approve and disapprove from any other model, for Laravel.
MIT License
143 stars 15 forks source link

fix issue with modifications not being able to get creations #18

Closed maggz69 closed 4 years ago

maggz69 commented 4 years ago

Issue:

Running the $model->modifications()->creations doesn't fetch any new creations that required approval

Changes:

Adding a static function that pulls created models that required approvals. This has been added to the RequiresApproval.php trait.

Usage

//Model::creations
Post::creations()