Skip to content

v0.5.0

Latest
Compare
Choose a tag to compare
@marcotas marcotas released this 12 Jun 14:33

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+