New feature and changes:
- Possibility to add more than one http methods on invokable controllers
class MyController
{
use MagicRoutes;
protected $method = 'post';
// or
protected $method = 'post|put'; // separate methods by '|'
}
- Update readme file to say that it is only compatible with laravel 7+