Solution:1
Here is a list of naming conventions accepted by Laravel community. According to this, Controller name should be Singular although you could chose your own convention as your need or how your team prefer.
Solution:1
Here is a list of naming conventions accepted by Laravel community. According to this, Controller name should be Singular although you could chose your own convention as your need or how your team prefer.
Solution:2
You should follow those naming convention:
class Foo
{
const VERSION = '1.0';
const DATE_APPROVED = '2012-06-01';
}
Useful link: