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
527 stars 68 forks source link

Route-Model-Binding in Strict Mode? #32

Open mikebronner opened 6 years ago

mikebronner commented 6 years ago

I get page not found errors when trying to access a model for editing that hasn't been approved yet. I'm using restful routes and controllers, along with route-model-binding. I suspect that the query for the route-model-binding is preventing me from accessing that model, because it hasn't been approved. Is there a recommended process for this? How can I access a record for approval (via route-model-binding) if that doesn't work?

Thanks!