Releases: marcotas/laravel-magic-routes
Releases · marcotas/laravel-magic-routes
v0.5.0
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+
Fix php compatiblity
v0.4.2 Make compatible with php versions < 7.4
Update security packages and README
v0.4.0 Update security packages and README
Fix params without typehint
v0.3.1 Fix params without typehint