Very new to FuelPHP, so apologies if this is a known issue.
When issuing the following command:
php oil g scaffold series name:string desc:text image:text
Oil autogenerates all of the required scaffolding. However, the pluralizer in use correctly identifies that 'series' is already and only a plural noun. This does however cause issues in the views/series/index.php view, as the for loop becomes
<?php foreach ($series as $series): ?>
As you can imagine, this does not function as it should.
I've since chosen a different name, but is this a known issue? Documented somewhere I might have missed?
Fair enough. It'd be useful if this was stated on the 'Oil > Generate' docs page, as I imagine scaffolding is one of the big reasons people switch to FuelPHP (and as such will probably land up on that docs page).