pqrs / l5b-crud

CRUD artisan command for rappasoft/laravel-5-boilerplate
21 stars 15 forks source link

Something is out of sync between the events and the listener #12

Open drjekyll opened 5 years ago

drjekyll commented 5 years ago

My model is named Genre.

The events wind up referring to the plural: $this->genres = $genres;

but the GenreEventListener uses the singular $newitem = $event->genre->name;

This causes an error. Changing one or the other so that they match makes things work.

Given that it's an event for for a single entity, I would guess that the event code should use the singular instead of the plural.